Files
nixpkgs/pkgs/development/python-modules/hupper/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

42 lines
1.0 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
watchdog,
}:
buildPythonPackage rec {
pname = "hupper";
version = "1.12.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Br9UFw/07PTIStXxiN7jkBFzq0ScJgitBbm/1rE+Mus=";
};
# 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)
nativeCheckInputs = [
pytestCheckHook
]
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ watchdog ];
disabledTestPaths = [
# Doesn't work with an exported home, RuntimeError: timeout waiting for change to file=/build/tmpgfn145cx
"tests/test_it.py"
];
pythonImportsCheck = [ "hupper" ];
meta = {
description = "In-process file monitor/reloader for reloading your code automatically during development";
mainProgram = "hupper";
homepage = "https://github.com/Pylons/hupper";
license = lib.licenses.mit;
maintainers = [ ];
};
}