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