Files
nixpkgs/pkgs/development/python-modules/cssutils/default.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

59 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools-scm,
more-itertools,
cssselect,
jaraco-test,
lxml,
mock,
pytestCheckHook,
importlib-resources,
}:
buildPythonPackage rec {
pname = "cssutils";
version = "2.11.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jaraco";
repo = "cssutils";
tag = "v${version}";
hash = "sha256-U9myMfKz1HpYVJXp85izRBpm2wjLHYZj8bUVt3ROTEg=";
};
build-system = [ setuptools-scm ];
dependencies = [ more-itertools ];
nativeCheckInputs = [
cssselect
jaraco-test
lxml
mock
pytestCheckHook
]
++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
disabledTests = [
# access network
"encutils"
"website.logging"
];
pythonImportsCheck = [ "cssutils" ];
meta = {
description = "CSS Cascading Style Sheets library for Python";
homepage = "https://github.com/jaraco/cssutils";
changelog = "https://github.com/jaraco/cssutils/blob/${src.rev}/NEWS.rst";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];
};
}