pythonPackages.iso-639: init at 0.4.5

This commit is contained in:
zraexy 2017-04-13 12:08:05 -08:00 committed by Jörg Thalheim
parent af416aae81
commit 62b1bd180f
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 = "iso-639";
version = "0.4.5";
src = fetchurl {
url = "mirror://pypi/i/${pname}/${name}.tar.gz";
sha256 = "dc9cd4b880b898d774c47fe9775167404af8a85dd889d58f9008035109acce49";
};
meta = with stdenv.lib; {
homepage = https://github.com/noumar/iso639;
description = "ISO 639 library for Python";
license = licenses.agpl3;
maintainers = with maintainers; [ zraexy ];
};
}

View file

@ -13273,6 +13273,8 @@ in {
license = with licenses; [ lgpl21 ];
};
};
iso-639 = callPackage ../development/python-modules/iso-639 {};
iso8601 = buildPythonPackage rec {
name = "iso8601-${version}";