10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-EjBvtQ5enn6u74S4Au2HdIi6gONcZyhn9UjAkkp2cW4=";
23 sed -i "/--cov/d" setup.cfg
30 propagatedBuildInputs = [
39 # Force Cython to re-generate this file. If it is present, Cython will
40 # think it is "up to date" even though it was generated with an older,
41 # incompatible version of Cython. See
42 # https://github.com/Kozea/tinycss/issues/17.
46 # Disable Cython tests
47 TINYCSS_SKIP_SPEEDUPS_TESTS = true;
49 pythonImportsCheck = [
54 description = "Complete yet simple CSS parser for Python";
55 homepage = "https://tinycss.readthedocs.io";
56 changelog = "https://github.com/Kozea/tinycss/releases/tag/v${version}";
57 license = licenses.bsd3;
58 maintainers = with maintainers; [ ];