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";
2018-05-28 12:19:31 +00:00
version = "2.1.1";
name = pname + "-" + version;
2017-06-11 12:01:37 +00:00
src = fetchPypi {
inherit pname version;
2018-05-28 12:19:31 +00:00
sha256 = "64369ece6f5c6ab18cba2cd0b199da40ffb9390493da1ff5c1d94b6ed107b401";
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 ];
};
}