3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/hupper/default.nix

23 lines
644 B
Nix
Raw Normal View History

2017-11-20 14:08:27 +00:00
{ stdenv, buildPythonPackage, fetchPypi, python
2017-09-25 12:39:07 +01:00
, pytest, pytestcov, watchdog, mock
}:
buildPythonPackage rec {
pname = "hupper";
2018-04-04 19:09:02 +01:00
version = "1.1";
2017-09-25 12:39:07 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2018-04-04 19:09:02 +01:00
sha256 = "e18037fa43fb4af7c00bd262ca6f5d7bcd22debd5d71e43b0fb1437f56e78035";
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
}