tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
apio: switch to pypaBuildHook
Peder Bergebakken Sundt
2 years ago
c8466f96
c2972f56
+6
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
embedded
fpga
apio
default.nix
+6
-1
pkgs/development/embedded/fpga/apio/default.nix
···
10
, scons
11
, setuptools
12
, tinyprog
0
13
, pytestCheckHook
14
}:
15
16
buildPythonApplication rec {
17
pname = "apio";
18
version = "0.8.1";
19
-
format = "flit";
20
21
src = fetchFromGitHub {
22
owner = "FPGAwars";
···
46
'version = semantic_version.Version(pkg_version)' \
47
'version = semantic_version.Version(pkg_version.replace(".dev", "-dev"))'
48
'';
0
0
0
0
49
50
propagatedBuildInputs = [
51
click
···
10
, scons
11
, setuptools
12
, tinyprog
13
+
, flit-core
14
, pytestCheckHook
15
}:
16
17
buildPythonApplication rec {
18
pname = "apio";
19
version = "0.8.1";
20
+
format = "pyproject";
21
22
src = fetchFromGitHub {
23
owner = "FPGAwars";
···
47
'version = semantic_version.Version(pkg_version)' \
48
'version = semantic_version.Version(pkg_version.replace(".dev", "-dev"))'
49
'';
50
+
51
+
nativeBuildInputs = [
52
+
flit-core
53
+
];
54
55
propagatedBuildInputs = [
56
click