1{ stdenv, buildPythonPackage, fetchPypi, ipaddress }:
2
3buildPythonPackage rec {
4 pname = "uritools";
5 version = "2.1.0";
6 name = pname + "-" + version;
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "a7b58a249a851ef5fff1bc513b940653f0d4841a6668e02431c1297f05efeec3";
11 };
12
13 propagatedBuildInputs = [ ipaddress ];
14
15 meta = with stdenv.lib; {
16 description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
17 license = licenses.mit;
18 maintainers = [ maintainers.rvolosatovs ];
19 };
20}