1{ stdenv, buildPythonPackage, fetchPypi, ipaddress }:
2
3buildPythonPackage rec {
4 pname = "uritools";
5 name = "uritools-${version}";
6 version = "2.0.0";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "20d7881a947cd3c3bb452e2b541f44acc52febe9c4e3f6d05c55d559fb208c50";
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}