nixpkgs/pkgs/development/python-modules/pycountry/default.nix
R. RyanTM 0b51a12e48 python36Packages.pycountry: 1.17 -> 18.5.26
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.6-pycountry/versions
2018-10-24 15:36:31 +02:00

23 lines
481 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
,
}:
buildPythonPackage rec {
pname = "pycountry";
version = "18.5.26";
src = fetchPypi {
inherit pname version;
sha256 = "15q9j047s3yc9cfcxq1ch8b71f81na44cr6dydd5gxk0ki9a4akz";
};
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;
};
}