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