2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-09-25 12:39:07 +01:00
|
|
|
, pytest, pytestcov, watchdog, mock
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hupper";
|
2020-06-06 07:47:13 +01:00
|
|
|
version = "1.10.2";
|
2017-09-25 12:39:07 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:13 +01:00
|
|
|
sha256 = "3818f53dabc24da66f65cf4878c1c7a9b5df0c46b813e014abdd7c569eb9a02a";
|
2017-09-25 12:39:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
2017-11-20 14:08:27 +00:00
|
|
|
# FIXME: watchdog dependency is disabled on Darwin because of #31865, which causes very silent
|
|
|
|
# segfaults in the testsuite that end up failing the tests in a background thread (in myapp)
|
|
|
|
checkInputs = [ pytest pytestcov mock ] ++ stdenv.lib.optional (!stdenv.isDarwin) watchdog;
|
2017-09-25 12:39:07 +01:00
|
|
|
}
|