Merge pull request #64244 from marsam/fix-pytest-mock
pythonPackages.pytest-mock: fix build
This commit is contained in:
commit
b519801a08
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, isPy3k, pytest, mock, setuptools_scm }:
|
{ lib, buildPythonPackage, fetchPypi, fetchpatch, isPy3k, pytest, mock, setuptools_scm }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pytest-mock";
|
pname = "pytest-mock";
|
||||||
|
@ -12,6 +12,14 @@ buildPythonPackage rec {
|
||||||
propagatedBuildInputs = lib.optional (!isPy3k) mock;
|
propagatedBuildInputs = lib.optional (!isPy3k) mock;
|
||||||
nativeBuildInputs = [ setuptools_scm pytest ];
|
nativeBuildInputs = [ setuptools_scm pytest ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix tests for pytest 4.6. Remove with the next release
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/pytest-dev/pytest-mock/commit/189cc599d3bfbe91a17c93211c04237b6c5849b1.patch";
|
||||||
|
sha256 = "13nk75ldab3j8nfzyd9w4cgfk2fxq4if1aqkqy82ar7y7qh07a7m";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
py.test
|
py.test
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in New Issue