Merge pull request #209841 from r-ryantm/auto-update/python310Packages.uritools

python310Packages.uritools: 4.0.0 -> 4.0.1
This commit is contained in:
Fabian Affolter 2023-01-09 12:03:32 +01:00 committed by GitHub
commit d410514d43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,14 +6,14 @@
buildPythonPackage rec {
pname = "uritools";
version = "4.0.0";
version = "4.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "420d94c1ff4bf90c678fca9c17b8314243bbcaa992c400a95e327f7f622e1edf";
hash = "sha256-78XDpt4FQEhQaFqNPzTahHa1aqNRb7+O/1yHBMeigm8=";
};
pythonImportsCheck = [
@ -23,6 +23,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
homepage = "https://github.com/tkem/uritools/";
changelog = "https://github.com/tkem/uritools/blob/v${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ rvolosatovs ];
};