forked from BattleCh1cken/pros-cli-nix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyinstaller.nix
45 lines (43 loc) · 950 Bytes
/
pyinstaller.nix
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
42
43
44
45
{
buildPythonApplication,
fetchPypi,
zlib,
keyring,
future,
django,
}:
buildPythonApplication rec {
pname = "pyinstaller";
version = "5.7.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-DllTk3018LN1Q8xpFdrK8yOby98/0+y7eGZkVGihZ3U=";
};
buildInputs = let
pyinstaller-hooks-contrib = buildPythonApplication rec {
pname = "pyinstaller-hooks-contrib";
version = "2022.15";
src = fetchPypi {
inherit pname version;
hash = "sha256-c/1AUdwWIPOulkMpHNni9Hv+1YKt4usF4yR+yrSk9fM=";
};
};
altgraph = buildPythonApplication rec {
pname = "altgraph";
version = "0.17.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-rTM1gRTffJQWzbj6HqpYUhZsUFEYcXAhxqjHx6u9A90=";
};
};
in [
zlib
pyinstaller-hooks-contrib
altgraph
keyring
future
django
];
# no tests in archive
docheck = false;
}