2021-02-16 22:17:47 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytestCheckHook
|
|
|
|
, pytest-cov
|
|
|
|
, watchdog
|
2017-09-25 12:39:07 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
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)
|
2021-02-16 22:17:47 +00:00
|
|
|
checkInputs = [ pytestCheckHook pytest-cov ] ++ lib.optional (!stdenv.isDarwin) watchdog;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "in-process file monitor / reloader for reloading your code automatically during development";
|
|
|
|
homepage = "https://github.com/Pylons/hupper";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
2017-09-25 12:39:07 +01:00
|
|
|
}
|