587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
90 lines
1.7 KiB
Nix
90 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, anyio
|
|
, buildPythonPackage
|
|
, cargo
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, rustc
|
|
, pythonOlder
|
|
, dirty-equals
|
|
, pytest-mock
|
|
, pytest-timeout
|
|
, pytestCheckHook
|
|
, CoreServices
|
|
, libiconv
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "watchfiles";
|
|
version = "0.21.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "samuelcolvin";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-/qNgkPF5N8jzSV3M0YFWvQngZ4Hf4WM/GBS1LtgFbWM=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-sqHTW1+E7Fp33KW6IYlNa77AYc2iCfaSoBRXzrhEKr8=";
|
|
};
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
CoreServices
|
|
libiconv
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.maturinBuildHook
|
|
cargo
|
|
rustc
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
anyio
|
|
];
|
|
|
|
# Tests need these permissions in order to use the FSEvents API on macOS.
|
|
sandboxProfile = ''
|
|
(allow mach-lookup (global-name "com.apple.FSEvents"))
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
dirty-equals
|
|
pytest-mock
|
|
pytest-timeout
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i "/^requires-python =.*/a version = '${version}'" pyproject.toml
|
|
'';
|
|
|
|
preCheck = ''
|
|
rm -rf watchfiles
|
|
'';
|
|
|
|
disabledTests = [
|
|
# BaseExceptionGroup: unhandled errors in a TaskGroup (1 sub-exception)
|
|
"test_awatch_interrupt_raise"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"watchfiles"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "File watching and code reload";
|
|
mainProgram = "watchfiles";
|
|
homepage = "https://watchfiles.helpmanual.io/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|