nixpkgs/pkgs/development/python-modules/pycountry/default.nix
R. RyanTM 867590b6f7 python37Packages.pycountry: 18.5.26 -> 18.12.8
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
2018-12-14 11:53:54 -08:00

23 lines
481 B
Nix

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