python3Packages.css-parser: migrate to pyproject

This commit is contained in:
Sigmanificient
2026-07-19 23:58:16 +02:00
parent f9e9e89552
commit 024cb92304
@@ -3,18 +3,21 @@
buildPythonPackage,
fetchPypi,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "css-parser";
version = "1.0.10";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-vx6XKtMzROkyBpZPtM2QjZ3e+fzQwB+pPg1zRnU5Q2M=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "css_parser" ];