python37Packages.pyrsistent: 0.15.2 -> 0.15.4

Some tests are broken on 0.15.2 if used with pytest 5+ as discussed
in #64145. The issue is fixed in tobgu/pyrsistent#175 and released in
0.15.4.
This commit is contained in:
László Vaskó 2019-09-24 17:41:35 +02:00 committed by Jon
parent 7eed92a7ac
commit 9d9aa6099f

View file

@ -20,6 +20,10 @@ buildPythonPackage rec {
checkInputs = [ pytestrunner pytest_4 hypothesis ];
postPatch = ''
substituteInPlace setup.py --replace 'pytest<5' 'pytest'
'';
meta = with stdenv.lib; {
homepage = https://github.com/tobgu/pyrsistent/;
description = "Persistent/Functional/Immutable data structures";