nixpkgs/pkgs/development/python-modules/uritools/default.nix
Martin Weinelt 7259671dc4 python3Packages.uritools: 5.0.0 -> 6.0.1
https://github.com/tkem/uritools/blob/v6.0.1/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
2026-02-01 17:39:10 +01:00

29 lines
683 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "uritools";
version = "6.0.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-L56cuVTnh3Iysshj9ySkSgbrmNnH691pkUh26Uh7lPg=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "uritools" ];
meta = {
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ rvolosatovs ];
};
}