tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.nodezator: init at 1.5.4
Théo Bori
8 months ago
474b88ca
8fe79365
+37
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
no
nodezator
package.nix
+37
pkgs/by-name/no/nodezator/package.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
python3Packages,
4
4
+
fetchFromGitHub,
5
5
+
nix-update-script,
6
6
+
}:
7
7
+
python3Packages.buildPythonApplication rec {
8
8
+
pname = "nodezator";
9
9
+
version = "1.5.4";
10
10
+
pyproject = true;
11
11
+
12
12
+
src = fetchFromGitHub {
13
13
+
owner = "IndieSmiths";
14
14
+
repo = "nodezator";
15
15
+
tag = "v${version}";
16
16
+
hash = "sha256-kdkOAJB7cVaayJOzof7dV9EBczEoEKXzCM7TcY8Ex5g=";
17
17
+
};
18
18
+
19
19
+
build-system = with python3Packages; [ setuptools ];
20
20
+
21
21
+
dependencies = with python3Packages; [
22
22
+
pygame-ce
23
23
+
numpy
24
24
+
];
25
25
+
26
26
+
passthru.updateScript = nix-update-script { };
27
27
+
28
28
+
meta = {
29
29
+
description = "Generalist Python node editor";
30
30
+
homepage = "https://nodezator.com";
31
31
+
downloadPage = "https://github.com/IndiePython/nodezator";
32
32
+
changelog = "https://github.com/IndiePython/nodezator/releases/tag/v${version}";
33
33
+
license = lib.licenses.unlicense;
34
34
+
maintainers = with lib.maintainers; [ theobori ];
35
35
+
mainProgram = "nodezator";
36
36
+
};
37
37
+
}