python312Packages.cssselect2: format with nixfmt

This commit is contained in:
Fabian Affolter
2024-05-20 09:35:49 +02:00
parent 2656955ebe
commit d16fcc59e6
@@ -1,10 +1,11 @@
{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, pytestCheckHook
, pythonOlder
, tinycss2
{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
pytestCheckHook,
pythonOlder,
tinycss2,
}:
buildPythonPackage rec {
@@ -23,21 +24,13 @@ buildPythonPackage rec {
sed -i '/^addopts/d' pyproject.toml
'';
build-system = [
flit-core
];
build-system = [ flit-core ];
dependencies = [
tinycss2
];
dependencies = [ tinycss2 ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"cssselect2"
];
pythonImportsCheck = [ "cssselect2" ];
meta = with lib; {
description = "CSS selectors for Python ElementTree";