about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorLuke Granger-Brown <git@lukegb.com>2021-07-25 10:07:04 +0100
committerGitHub <noreply@github.com>2021-07-25 10:07:04 +0100
commit7c1ab35784634c583c72b6fdd7bf79a55447cd25 (patch)
treeae80a974e9af692767615ffbc84166ea1e184c66 /pkgs/development/tools
parent480e2811cf7cfea18fb9a349bab66fb3db4f7ce0 (diff)
parentdb7aa804f52a66925b9880fe953eb5d323036719 (diff)
downloadnixlib-7c1ab35784634c583c72b6fdd7bf79a55447cd25.tar
nixlib-7c1ab35784634c583c72b6fdd7bf79a55447cd25.tar.gz
nixlib-7c1ab35784634c583c72b6fdd7bf79a55447cd25.tar.bz2
nixlib-7c1ab35784634c583c72b6fdd7bf79a55447cd25.tar.lz
nixlib-7c1ab35784634c583c72b6fdd7bf79a55447cd25.tar.xz
nixlib-7c1ab35784634c583c72b6fdd7bf79a55447cd25.tar.zst
nixlib-7c1ab35784634c583c72b6fdd7bf79a55447cd25.zip
Merge pull request #128547 from Luflosi/add-apio
apio: init at 0.7.4
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/apio/default.nix69
1 files changed, 69 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/apio/default.nix b/pkgs/development/tools/misc/apio/default.nix
new file mode 100644
index 000000000000..b810910f7fec
--- /dev/null
+++ b/pkgs/development/tools/misc/apio/default.nix
@@ -0,0 +1,69 @@
+{ lib
+, buildPythonApplication
+, fetchFromGitHub
+, click
+, semantic-version
+, requests
+, colorama
+, pyserial
+, wheel
+, setuptools
+, tinyprog
+, pytestCheckHook
+}:
+
+buildPythonApplication rec {
+  pname = "apio";
+  version = "0.7.5";
+  format = "flit";
+
+  src = fetchFromGitHub {
+    owner = "FPGAwars";
+    repo = "apio";
+    rev = "v${version}";
+    sha256 = "sha256-9f0q6tELUDo6FdjPG708d7BY3O5ZiZ0FwNFzBBiLQp4=";
+  };
+
+  postPatch = ''
+    substituteInPlace apio/managers/scons.py --replace \
+      'return "tinyprog --libusb --program"' \
+      'return "${tinyprog}/bin/tinyprog --libusb --program"'
+    substituteInPlace apio/util.py --replace \
+      '_command = join(get_bin_dir(), "tinyprog")' \
+      '_command = "${tinyprog}/bin/tinyprog"'
+
+    # semantic-version seems to not support version numbers like the one of tinyprog in Nixpkgs (1.0.24.dev114+gxxxxxxx).
+    # See https://github.com/rbarrois/python-semanticversion/issues/47.
+    # This leads to an error like "Error: Invalid version string: '1.0.24.dev114+g97f6353'"
+    # when executing "apio upload" for a TinyFPGA.
+    # Replace the dot with a dash to work around this problem.
+    substituteInPlace apio/managers/scons.py --replace \
+        'version = semantic_version.Version(pkg_version)' \
+        'version = semantic_version.Version(pkg_version.replace(".dev", "-dev"))'
+  '';
+
+  propagatedBuildInputs = [
+    click
+    semantic-version
+    requests
+    colorama
+    pyserial
+    wheel
+    setuptools # needs pkg_resources at runtime (technically not needed when tinyprog is also in this list because of the propagatedBuildInputs of tinyprog)
+
+    tinyprog # needed for upload to TinyFPGA
+  ];
+
+  checkInputs = [
+    pytestCheckHook
+  ];
+
+  pytestFlagsArray = [ "--offline" ];
+
+  meta = with lib; {
+    description = "Open source ecosystem for open FPGA boards";
+    homepage = "https://github.com/FPGAwars/apio";
+    license = licenses.gpl2Only;
+    maintainers = with maintainers; [ Luflosi ];
+  };
+}