summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/nxt-python
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-01-03 00:08:40 +0000
committerGitHub <noreply@github.com>2022-01-03 00:08:40 +0000
commit4acff2bbdedb6892f4fe6225d77aa184a4500a82 (patch)
tree9cf787a372c89c6c14ca99ed83cc7ed3a5dec7a7 /pkgs/development/python-modules/nxt-python
parentb0c76508ef985738a3b0f58420603b8933e03c12 (diff)
parent74f542c42e5bca4f74f53cf7054c8a93d4736f51 (diff)
Merge master into haskell-updates
Diffstat (limited to 'pkgs/development/python-modules/nxt-python')
-rw-r--r--pkgs/development/python-modules/nxt-python/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/development/python-modules/nxt-python/default.nix b/pkgs/development/python-modules/nxt-python/default.nix
deleted file mode 100644
index 38920dc55429..000000000000
--- a/pkgs/development/python-modules/nxt-python/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchgit
-, isPy3k
-, pyusb
-, pybluez
-, pyfantom
-, git
-}:
-
-buildPythonPackage {
- version = "unstable-20160819";
- pname = "nxt-python";
- disabled = isPy3k;
-
- src = fetchgit {
- url = "https://github.com/Eelviny/nxt-python";
- rev = "479e20b7491b28567035f4cee294c4a2af629297";
- sha256 = "0mcsajhgm2wy4iy2lhmyi3xibgmbixbchanzmlhsxk6qyjccn9r9";
- branchName= "pyusb";
- };
-
- propagatedBuildInputs = [ pyusb pybluez pyfantom git ];
-
- # Tests fail on Mac dependency
- doCheck = false;
-
- meta = with lib; {
- description = "Python driver/interface for Lego Mindstorms NXT robot";
- homepage = "https://github.com/Eelviny/nxt-python";
- license = licenses.gpl3;
- platforms = platforms.linux;
- maintainers = with maintainers; [ leenaars ];
- };
-
-}