forked from Ircama/epson_print_conf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.nix
More file actions
111 lines (89 loc) · 2.26 KB
/
Copy pathdependencies.nix
File metadata and controls
111 lines (89 loc) · 2.26 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
babel,
buildPythonPackage,
colorama,
fetchFromGitHub,
fetchPypi,
pillow,
pysnmp,
pyyaml,
setuptools,
}:
rec {
pysnmp-sync-adapter = buildPythonPackage (finalAttrs: {
pname = "pysnmp_sync_adapter";
version = "1.0.8";
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-uNd8MOxwOsbMLG9PkFzLchi8rG/RIPX1dK+U3ar1aPY=";
};
dependencies = [ pysnmp ];
pyproject = true;
build-system = [ setuptools ];
});
text-console = buildPythonPackage (finalAttrs: {
pname = "text_console";
version = "2.0.7";
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-DmhLZOaklqLa/7evJCxZ5m/JSsRkGgSmjFC0XtVT4BM=";
};
pyproject = true;
build-system = [ setuptools ];
});
tkcalendar = buildPythonPackage (finalAttrs: {
pname = "tkcalendar";
version = "1.6.1";
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-Xt+VjApZQp6QMJ6bgFsuIpGSu8q5UkYCRyBNcDDupc8=";
};
dependencies = [ babel ];
pyproject = true;
build-system = [ setuptools ];
});
hexdump2 = buildPythonPackage (finalAttrs: {
pname = "hexdump2";
version = "1.2.2";
# source archive not published to pypi, use github source instead
src = fetchFromGitHub {
owner = "HGrooms";
repo = finalAttrs.pname;
tag = "v${finalAttrs.version}";
hash = "sha256-ah0hqTu9zDoTQB7+HVtnbI+fw33OS7wXJLCMnjbpKUk=";
};
dependencies = [
colorama
];
pyproject = true;
build-system = [ setuptools ];
});
pyprintlpr = buildPythonPackage (finalAttrs: {
pname = "pyprintlpr";
version = "1.0.3";
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-zcGftwTo+g+fsNdIwKUgwJ1yxyxYIA7dPofuMY9olPs=";
};
dependencies = [
hexdump2
pyyaml
];
pyproject = true;
build-system = [ setuptools ];
});
epson-escp2 = buildPythonPackage (finalAttrs: {
pname = "epson_escp2";
version = "1.0.2";
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-p+Plp030tuydO3kqh5RfbwdOFRRFjOpzLreIUK3olg8=";
};
dependencies = [
pillow
hexdump2
];
pyproject = true;
build-system = [ setuptools ];
});
}