depot/third_party/nixpkgs/pkgs/development/python-modules/cssutils/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

55 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
pythonAtLeast,
pythonOlder,
fetchFromGitHub,
setuptools-scm,
cssselect,
jaraco-test,
lxml,
mock,
pytestCheckHook,
importlib-resources,
}:
buildPythonPackage rec {
pname = "cssutils";
version = "2.10.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jaraco";
repo = "cssutils";
rev = "refs/tags/v${version}";
hash = "sha256-1sAn6pFwWsnYS1eHQmyDNGTo6kdhL1vJBwUptADvHyo=";
};
build-system = [ setuptools-scm ];
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 ];
};
}