diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2024-07-06 14:57:15 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2024-07-06 14:57:15 +0200 |
| commit | 568462eaef0606f603a0f559a661102e00751eea (patch) | |
| tree | 90d991b1edeefdb7eb3bbf6f31aa4a4c9151d8a0 /pkgs/development/python-modules/cssutils | |
| parent | a4c0cba5b29c86a5dc8050861a583a7681bc3241 (diff) | |
python312Packages.cssutils: add missing dependency
Diffstat (limited to 'pkgs/development/python-modules/cssutils')
| -rw-r--r-- | pkgs/development/python-modules/cssutils/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/cssutils/default.nix b/pkgs/development/python-modules/cssutils/default.nix index a442c2c22e14..7e4447546446 100644 --- a/pkgs/development/python-modules/cssutils/default.nix +++ b/pkgs/development/python-modules/cssutils/default.nix @@ -1,10 +1,10 @@ { lib, buildPythonPackage, - pythonAtLeast, pythonOlder, fetchFromGitHub, setuptools-scm, + more-itertools, cssselect, jaraco-test, lxml, @@ -29,6 +29,8 @@ buildPythonPackage rec { build-system = [ setuptools-scm ]; + dependencies = [ more-itertools ]; + nativeCheckInputs = [ cssselect jaraco-test |
