10 buildPythonPackage rec {
13 format = "setuptools";
16 inherit pname version;
17 hash = "sha256-Br9UFw/07PTIStXxiN7jkBFzq0ScJgitBbm/1rE+Mus=";
20 # FIXME: watchdog dependency is disabled on Darwin because of #31865, which causes very silent
21 # segfaults in the testsuite that end up failing the tests in a background thread (in myapp)
24 ] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ watchdog ];
27 # Doesn't work with an exported home, RuntimeError: timeout waiting for change to file=/build/tmpgfn145cx
31 pythonImportsCheck = [ "hupper" ];
34 description = "In-process file monitor/reloader for reloading your code automatically during development";
35 mainProgram = "hupper";
36 homepage = "https://github.com/Pylons/hupper";
37 license = licenses.mit;