Commit d16fcc59 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.cssselect2: format with nixfmt

parent 2656955e
Loading
Loading
Loading
Loading
+12 −19
Original line number Diff line number Diff line
{ 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";