21 lines
539 B
Nix
Raw Normal View History

2017-06-11 14:01:37 +02:00
{ stdenv, buildPythonPackage, fetchPypi, ipaddress }:
buildPythonPackage rec {
pname = "uritools";
name = "uritools-${version}";
2017-10-25 20:04:35 +02:00
version = "2.1.0";
2017-06-11 14:01:37 +02:00
src = fetchPypi {
inherit pname version;
2017-10-25 20:04:35 +02:00
sha256 = "a7b58a249a851ef5fff1bc513b940653f0d4841a6668e02431c1297f05efeec3";
2017-06-11 14:01:37 +02:00
};
propagatedBuildInputs = [ ipaddress ];
meta = with stdenv.lib; {
description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
license = licenses.mit;
maintainers = [ maintainers.rvolosatovs ];
};
}