depot/third_party/nixpkgs/pkgs/development/python-modules/cssutils/default.nix
Default email b5f92a349c Project import generated by Copybara.
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
2023-10-19 15:55:26 +02:00

61 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, pythonAtLeast
, pythonOlder
, fetchpatch
, fetchPypi
, setuptools
, setuptools-scm
, cssselect
, jaraco-test
, lxml
, mock
, pytestCheckHook
, importlib-resources
}:
buildPythonPackage rec {
pname = "cssutils";
version = "2.9.0";
disabled = pythonOlder "3.8";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-iUd7PRfXkOl7n7Te9wh2cGEFV5Wq5vfIKuMulnyb5M0=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
nativeCheckInputs = [
cssselect
jaraco-test
lxml
mock
pytestCheckHook
] ++ lib.optionals (pythonOlder "3.9") [
importlib-resources
];
disabledTests = [
# access network
"test_parseUrl"
"encutils"
"website.logging"
];
pythonImportsCheck = [ "cssutils" ];
meta = with lib; {
description = "A CSS Cascading Style Sheets library for Python";
homepage = "https://github.com/jaraco/cssutils";
changelog = "https://github.com/jaraco/cssutils/blob/v${version}/CHANGES.rst";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
}