mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
pythonPackages.supervisor: fix tests
This commit is contained in:
parent
98ddcfe794
commit
5d761d985b
@ -1,6 +1,7 @@
|
||||
{ lib, buildPythonPackage, isPy3k, fetchPypi
|
||||
{ stdenv, lib, buildPythonPackage, isPy3k, fetchPypi
|
||||
, mock
|
||||
, meld3
|
||||
, pytest
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
@ -13,7 +14,13 @@ buildPythonPackage rec {
|
||||
sha256 = "02pindhq84hb9a7ykyaqw8i2iqb21h69lpmclyqh7fm1446rji4n";
|
||||
};
|
||||
|
||||
checkInputs = [ mock ];
|
||||
# wants to write to /tmp/foo which is likely already owned by another
|
||||
# nixbld user on hydra
|
||||
doCheck = !stdenv.isDarwin;
|
||||
checkInputs = [ mock pytest ];
|
||||
checkPhase = ''
|
||||
pytest
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ meld3 setuptools ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user