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