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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
622 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
2017-06-11 13:01:37 +01:00
buildPythonPackage rec {
pname = "uritools";
version = "4.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
2017-06-11 13:01:37 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "420d94c1ff4bf90c678fca9c17b8314243bbcaa992c400a95e327f7f622e1edf";
2017-06-11 13:01:37 +01:00
};
pythonImportsCheck = [
"uritools"
];
meta = with lib; {
2017-06-11 13:01:37 +01:00
description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
homepage = "https://github.com/tkem/uritools/";
2017-06-11 13:01:37 +01:00
license = licenses.mit;
maintainers = with maintainers; [ rvolosatovs ];
2017-06-11 13:01:37 +01:00
};
}