depot/third_party/nixpkgs/pkgs/development/python-modules/tinycss/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

53 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
cssutils,
cython,
fetchPypi,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "tinycss";
version = "0.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-EjBvtQ5enn6u74S4Au2HdIi6gONcZyhn9UjAkkp2cW4=";
};
postPatch = ''
sed -i "/--cov/d" setup.cfg
'';
nativeBuildInputs = [ cython ];
propagatedBuildInputs = [ cssutils ];
nativeCheckInputs = [ pytestCheckHook ];
preBuild = ''
# Force Cython to re-generate this file. If it is present, Cython will
# think it is "up to date" even though it was generated with an older,
# incompatible version of Cython. See
# https://github.com/Kozea/tinycss/issues/17.
rm tinycss/speedups.c
'';
# Disable Cython tests
TINYCSS_SKIP_SPEEDUPS_TESTS = true;
pythonImportsCheck = [ "tinycss" ];
meta = with lib; {
description = "Complete yet simple CSS parser for Python";
homepage = "https://tinycss.readthedocs.io";
changelog = "https://github.com/Kozea/tinycss/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = [ ];
};
}