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