nixpkgs/pkgs/development/python-modules/hupper/default.nix

22 lines
612 B
Nix
Raw Normal View History

2017-11-20 14:08:27 +00:00
{ stdenv, buildPythonPackage, fetchPypi, python
2017-09-25 11:39:07 +00:00
, pytest, pytestcov, watchdog, mock
}:
buildPythonPackage rec {
pname = "hupper";
2018-06-12 16:47:01 +00:00
version = "1.3";
2017-09-25 11:39:07 +00:00
src = fetchPypi {
inherit pname version;
2018-06-12 16:47:01 +00:00
sha256 = "20387760e4d32bd4813c2cabc8e51d92b2c22c546102a0af182c33c152cd7ede";
2017-09-25 11:39:07 +00: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 11:39:07 +00:00
}