nixpkgs/pkgs/development/python-modules/pycountry/default.nix
R. RyanTM 89a4e8d5e0 python37Packages.pycountry: 18.12.8 -> 19.7.15
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-pycountry/versions
2019-07-24 08:19:36 +02:00

23 lines
481 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
,
}:
buildPythonPackage rec {
pname = "pycountry";
version = "19.7.15";
src = fetchPypi {
inherit pname version;
sha256 = "15lhv18za0zv36laksr86rszjhp0slmqzcylm6ds9vpd7gyqprb8";
};
meta = with stdenv.lib; {
homepage = https://bitbucket.org/flyingcircus/pycountry;
description = "ISO country, subdivision, language, currency and script definitions and their translations";
license = licenses.lgpl2;
};
}