depot/third_party/nixpkgs/pkgs/development/python-modules/cssutils/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

57 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";
rev = "refs/tags/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 = with lib; {
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 = licenses.lgpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
}