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:
parent
378c5e7689
commit
90f85a2de5
20
pkgs/development/python-modules/uritools/default.nix
Normal file
20
pkgs/development/python-modules/uritools/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -30444,6 +30444,8 @@ EOF
|
|||
|
||||
gensim = callPackage ../development/python-modules/gensim { };
|
||||
|
||||
uritools = callPackage ../development/python-modules/uritools { };
|
||||
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
|
Loading…
Reference in a new issue