nixpkgs/pkgs/development/python-modules/uritools/default.nix

21 lines
539 B
Nix
Raw Normal View History

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