Merge pull request #280880 from r-ryantm/auto-update/python311Packages.dominate

python311Packages.dominate: 2.9.0 -> 2.9.1
This commit is contained in:
Fabian Affolter 2024-01-14 12:26:03 +01:00 committed by GitHub
commit 6b23e2ed0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "dominate";
version = "2.9.0";
version = "2.9.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-sVeR6+pDIhhUOhcC12rkXS/5X/mU5SAUuGhqadrXcv0=";
hash = "sha256-VYKEaH2biq4ZBOPWBRrRMt1KjAz1UbN+pOfkKjHRncQ=";
};
nativeBuildInputs = [
@ -33,6 +33,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library for creating and manipulating HTML documents using an elegant DOM API";
homepage = "https://github.com/Knio/dominate/";
changelog = "https://github.com/Knio/dominate/releases/tag/${version}";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ ];
};