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