blob: c64b7ed58c69a4cb11da668ca9d63c18459e8e2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "macfsevents";
version = "0.8.4";
pyproject = true;
src = fetchPypi {
pname = "MacFSEvents";
inherit version;
hash = "sha256-v3KD8dUXdkzNyBlbIWMdu6wcUGuSC/mo6ilWsxJ2Ucs=";
};
patches = [ ./fix-packaging.patch ];
build-system = [ setuptools ];
# PyEval_InitThreads is deprecated in Python 3.9, to be removed in Python 3.14
# and breaks the build under clang 16.
# https://github.com/malthe/macfsevents/issues/49
env.NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration";
# Some tests fail under nix build directory
doCheck = false;
pythonImportsCheck = [ "fsevents" ];
meta = {
description = "Thread-based interface to file system observation primitives";
homepage = "https://github.com/malthe/macfsevents";
changelog = "https://github.com/malthe/macfsevents/blob/${version}/CHANGES.rst";
license = lib.licenses.bsd2;
maintainers = [ ];
platforms = lib.platforms.darwin;
};
}
|