2019-09-17 22:07:34 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, setuptools }:
|
2017-04-13 21:08:05 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "iso-639";
|
|
|
|
version = "0.4.5";
|
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-04-13 21:08:05 +01:00
|
|
|
sha256 = "dc9cd4b880b898d774c47fe9775167404af8a85dd889d58f9008035109acce49";
|
|
|
|
};
|
|
|
|
|
2019-09-17 22:07:34 +01:00
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/noumar/iso639";
|
2017-04-13 21:08:05 +01:00
|
|
|
description = "ISO 639 library for Python";
|
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ zraexy ];
|
|
|
|
};
|
|
|
|
}
|