nixpkgs/pkgs/development/python-modules/iso-639/default.nix

19 lines
446 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage }:
2017-04-13 20:08:05 +00:00
buildPythonPackage rec {
pname = "iso-639";
version = "0.4.5";
src = fetchPypi {
inherit pname version;
2017-04-13 20:08:05 +00:00
sha256 = "dc9cd4b880b898d774c47fe9775167404af8a85dd889d58f9008035109acce49";
};
meta = with lib; {
2017-04-13 20:08:05 +00:00
homepage = https://github.com/noumar/iso639;
description = "ISO 639 library for Python";
license = licenses.agpl3;
maintainers = with maintainers; [ zraexy ];
};
}