python311Packages.types-html5lib: refactor

This commit is contained in:
Fabian Affolter 2024-01-08 08:58:59 +01:00
parent 495e5f1a14
commit 89e67c2238

View File

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