Merge pull request #108488 from rmcgibbo/pygal
python3Packages.pygal: unbreak with latest pytest
This commit is contained in:
commit
0a22509d12
|
@ -1,6 +1,7 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, fetchpatch
|
||||||
, isPyPy
|
, isPyPy
|
||||||
, flask
|
, flask
|
||||||
, pyquery
|
, pyquery
|
||||||
|
@ -22,6 +23,14 @@ buildPythonPackage rec {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "9204f05380b02a8a32f9bf99d310b51aa2a932cba5b369f7a4dc3705f0a4ce83";
|
sha256 = "9204f05380b02a8a32f9bf99d310b51aa2a932cba5b369f7a4dc3705f0a4ce83";
|
||||||
};
|
};
|
||||||
|
patches = [
|
||||||
|
# Fixes compatibility with latest pytest. October 12, 2020.
|
||||||
|
# Should be included in the next release after 2.4.0
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/Kozea/pygal/commit/19e5399be18a054b3b293f4a8a2777d2df4f9c18.patch";
|
||||||
|
sha256 = "1j0hpcvd2mhi449wmlr0ml9gw4cakqk3av1j79bi2qy86dyrss2l";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
flask
|
flask
|
||||||
|
|
Loading…
Reference in New Issue