Merge pull request #279536 from fabaff/types-html5lib-bump

python311Packages.types-html5lib: 1.1.11.15 -> 1.1.11.20240106
This commit is contained in:
Nick Cao 2024-01-08 11:31:36 -05:00 committed by GitHub
commit 41f6c78d2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "types-html5lib";
version = "1.1.11.15";
format = "setuptools";
version = "1.1.11.20240106";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-gOGiBi0io6/+XCjZfaML/786B205PID8bxZxIWwb1JI=";
hash = "sha256-/DobGOtgGz7q+SyQC9Z2dcCk+h3R0qKJPr20aSNUfuk=";
};
nativeBuildInputs = [
setuptools
];
# Module has no tests
doCheck = false;