about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyfantom/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/pyfantom/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/pyfantom/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/pyfantom/default.nix b/nixpkgs/pkgs/development/python-modules/pyfantom/default.nix
new file mode 100644
index 000000000000..a17388b34b5c
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/pyfantom/default.nix
@@ -0,0 +1,24 @@
+{ lib, stdenv
+, buildPythonPackage
+, fetchgit
+}:
+
+buildPythonPackage {
+  pname = "pyfantom";
+  version = "unstable-2013-12-18";
+
+  src = fetchgit {
+    url = "http://git.ni.fr.eu.org/pyfantom.git";
+    sha256 = "1m53n8bxslq5zmvcf7i1xzsgq5bdsf1z529br5ypmj5bg0s86j4q";
+  };
+
+  # No tests included
+  doCheck = false;
+
+  meta = with lib; {
+    homepage = "http://pyfantom.ni.fr.eu.org/";
+    description = "Wrapper for the LEGO Mindstorms Fantom Driver";
+    license = licenses.gpl2;
+  };
+
+}