1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

pythonPackages.uritools: init at 2.0.0

This commit is contained in:
Roman Volosatovs 2017-06-11 14:01:37 +02:00
parent 378c5e7689
commit 90f85a2de5
No known key found for this signature in database
GPG key ID: 3AC661943D80C89E
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, ipaddress }:
buildPythonPackage rec {
pname = "uritools";
name = "uritools-${version}";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "20d7881a947cd3c3bb452e2b541f44acc52febe9c4e3f6d05c55d559fb208c50";
};
propagatedBuildInputs = [ ipaddress ];
meta = with stdenv.lib; {
description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
license = licenses.mit;
maintainers = [ maintainers.rvolosatovs ];
};
}

View file

@ -30444,6 +30444,8 @@ EOF
gensim = callPackage ../development/python-modules/gensim { };
uritools = callPackage ../development/python-modules/uritools { };
});
in fix' (extends overrides packages)