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

23 lines
632 B
Nix
Raw Normal View History

2017-11-20 15:08:27 +01:00
{ stdenv, buildPythonPackage, fetchPypi, python
2017-09-25 13:39:07 +02:00
, pytest, pytestcov, watchdog, mock
}:
buildPythonPackage rec {
pname = "hupper";
version = "1.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "02lj6kgaf9xpr0binxwac3gpdhljglyj9fr78s165jc7qd7mifdg";
};
checkPhase = ''
py.test
'';
2017-11-20 15:08:27 +01: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 13:39:07 +02:00
}