blob: f40aadb9ef258b62950678625b02fa9cdac240a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
lib,
fetchPypi,
buildPythonPackage,
setuptools,
}:
buildPythonPackage rec {
pname = "iso-639";
version = "0.4.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "dc9cd4b880b898d774c47fe9775167404af8a85dd889d58f9008035109acce49";
};
propagatedBuildInputs = [ setuptools ];
meta = {
homepage = "https://github.com/noumar/iso639";
description = "ISO 639 library for Python";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ zraexy ];
};
}
|