3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.cssutils: fix tests

This commit is contained in:
Jonathan Ringer 2022-01-13 16:08:50 -08:00 committed by Jonathan Ringer
parent a2d4e9551d
commit 2d377340ca

View file

@ -1,6 +1,8 @@
{ lib
, buildPythonPackage
, pythonAtLeast
, pythonOlder
, fetchpatch
, fetchPypi
, setuptools-scm
, toml
@ -22,6 +24,14 @@ buildPythonPackage rec {
sha256 = "sha256-stOxYEfKroLlxZADaTW6+htiHPRcLziIWvS+SDjw/QA=";
};
patches = lib.optionals (pythonAtLeast "3.10") [
# fix tests for python3.10
(fetchpatch {
url = "https://github.com/jaraco/cssutils/pull/17/commits/355b1795dde77bd4b49d8df35377230fdb503802.patch";
sha256 = "sha256-hwe8oeZO2rq00cs079lje3wjQDEczAu3Tfy/X/M9+GQ=";
})
];
nativeBuildInputs = [
setuptools-scm
toml