lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.hupper: 1.10.2 -> 1.10.3

authored by

Fabian Affolter and committed by
Jonathan Ringer
c21b5470 806ef681

+15 -5
+15 -5
pkgs/development/python-modules/hupper/default.nix
··· 3 3 , buildPythonPackage 4 4 , fetchPypi 5 5 , pytestCheckHook 6 - , pytest-cov 7 6 , watchdog 8 7 }: 9 8 10 9 buildPythonPackage rec { 11 10 pname = "hupper"; 12 - version = "1.10.2"; 11 + version = "1.10.3"; 13 12 14 13 src = fetchPypi { 15 14 inherit pname version; 16 - sha256 = "3818f53dabc24da66f65cf4878c1c7a9b5df0c46b813e014abdd7c569eb9a02a"; 15 + sha256 = "sha256-zW9Rtyx1h7ybzopl7NAloelfGwMoRRm/6RKE0BAxbNk="; 17 16 }; 18 17 19 18 # FIXME: watchdog dependency is disabled on Darwin because of #31865, which causes very silent 20 19 # segfaults in the testsuite that end up failing the tests in a background thread (in myapp) 21 - checkInputs = [ pytestCheckHook pytest-cov ] ++ lib.optional (!stdenv.isDarwin) watchdog; 20 + checkInputs = [ 21 + pytestCheckHook 22 + ] ++ lib.optional (!stdenv.isDarwin) [ 23 + watchdog 24 + ]; 25 + 26 + disabledTestPaths = [ 27 + # Doesn't work with an exported home, RuntimeError: timeout waiting for change to file=/build/tmpgfn145cx 28 + "tests/test_it.py" 29 + ]; 30 + 31 + pythonImportsCheck = [ "hupper" ]; 22 32 23 33 meta = with lib; { 24 - description = "in-process file monitor / reloader for reloading your code automatically during development"; 34 + description = "In-process file monitor/reloader for reloading your code automatically during development"; 25 35 homepage = "https://github.com/Pylons/hupper"; 26 36 license = licenses.mit; 27 37 maintainers = with maintainers; [ ];