pythonPackages.iso3166: init at 0.8

This commit is contained in:
zraexy 2017-04-13 12:14:00 -08:00 committed by Jörg Thalheim
parent 62b1bd180f
commit ab031bf9b7
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, fetchurl, buildPythonPackage }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "iso3166";
version = "0.8";
src = fetchurl {
url = "mirror://pypi/i/${pname}/${name}.tar.gz";
sha256 = "fbeb17bed90d15b1f6d6794aa2ea458e5e273a1d29b6f4939423c97640e14933";
};
meta = with stdenv.lib; {
homepage = https://github.com/deactivated/python-iso3166;
description = "Self-contained ISO 3166-1 country definitions";
license = licenses.mit;
maintainers = with maintainers; [ zraexy ];
};
}

View file

@ -13275,6 +13275,8 @@ in {
};
iso-639 = callPackage ../development/python-modules/iso-639 {};
iso3166 = callPackage ../development/python-modules/iso3166 {};
iso8601 = buildPythonPackage rec {
name = "iso8601-${version}";