Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 483 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, isPy27 }: 2 3buildPythonPackage rec { 4 pname = "uritools"; 5 version = "3.0.0"; 6 disabled = isPy27; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "405917a31ce58a57c8ccd0e4ea290f38baf2f4823819c3688f5331f1aee4ccb0"; 11 }; 12 13 meta = with stdenv.lib; { 14 description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse"; 15 license = licenses.mit; 16 maintainers = [ maintainers.rvolosatovs ]; 17 }; 18}