nixpkgs/pkgs/development/python-modules/hupper/default.nix
2019-10-27 16:26:44 +01:00

22 lines
604 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, pytest, pytestcov, watchdog, mock
}:
buildPythonPackage rec {
pname = "hupper";
version = "1.9";
src = fetchPypi {
inherit pname version;
sha256 = "afd4e7beedc7417fed12cb2e15a21610c73cb08821c7f09aa926be24d4038dae";
};
checkPhase = ''
py.test
'';
# 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;
}