nixpkgs/pkgs/development/python-modules/cssutils/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2022-01-14 00:08:50 +00:00
, pythonAtLeast
2021-03-12 18:11:58 +00:00
, pythonOlder
2022-01-14 00:08:50 +00:00
, fetchpatch
, fetchPypi
, setuptools
2021-03-12 18:11:58 +00:00
, setuptools-scm
, importlib-metadata
, cssselect
, jaraco-test
, lxml
, mock
, pytestCheckHook
, importlib-resources
}:
buildPythonPackage rec {
pname = "cssutils";
version = "2.6.0";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-99zSPBzskJ/fNjDeNG4UE7eyVVk23sFLouu5kTvwgY4=";
};
2021-03-12 18:11:58 +00:00
nativeBuildInputs = [
setuptools
2021-03-12 18:11:58 +00:00
setuptools-scm
];
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
checkInputs = [
cssselect
jaraco-test
lxml
mock
pytestCheckHook
] ++ lib.optionals (pythonOlder "3.9") [
importlib-resources
];
disabledTests = [
2021-03-12 18:11:58 +00:00
# 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 ];
};
}