Merge pull request #153287 from r-ryantm/auto-update/python3.8-uritools

python38Packages.uritools: 3.0.2 -> 4.0.0
This commit is contained in:
Fabian Affolter 2022-01-03 11:49:07 +01:00 committed by GitHub
commit 1fdbbcec43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,29 @@
{ lib, buildPythonPackage, fetchPypi, isPy27 }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "uritools";
version = "3.0.2";
disabled = isPy27;
version = "4.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "28ffef82ce3b2793237d36e45aa7cde28dae6502f6a93fdbd05ede401520e279";
sha256 = "420d94c1ff4bf90c678fca9c17b8314243bbcaa992c400a95e327f7f622e1edf";
};
pythonImportsCheck = [
"uritools"
];
meta = with lib; {
description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
homepage = "https://github.com/tkem/uritools/";
license = licenses.mit;
maintainers = [ maintainers.rvolosatovs ];
maintainers = with maintainers; [ rvolosatovs ];
};
}