1{ lib, fetchPypi, buildPythonPackage }: 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 meta = with lib; { 13 homepage = https://github.com/noumar/iso639; 14 description = "ISO 639 library for Python"; 15 license = licenses.agpl3; 16 maintainers = with maintainers; [ zraexy ]; 17 }; 18}