at master 546 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "rfc3987"; 9 version = "1.3.8"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "d3c4d257a560d544e9826b38bc81db676890c79ab9d7ac92b39c7a253d5ca733"; 15 }; 16 17 doCheck = false; 18 meta = with lib; { 19 homepage = "https://pypi.python.org/pypi/rfc3987"; 20 license = licenses.gpl3Plus; 21 description = "Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)"; 22 maintainers = with maintainers; [ vanschelven ]; 23 }; 24}