about summary refs log tree commit diff
path: root/pkgs/grandpa/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/grandpa/default.nix')
-rw-r--r--pkgs/grandpa/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/grandpa/default.nix b/pkgs/grandpa/default.nix
new file mode 100644
index 00000000..bc68f157
--- /dev/null
+++ b/pkgs/grandpa/default.nix
@@ -0,0 +1,19 @@
+{ fetchgit, buildPythonPackage, pythonPackages, cython, gpm }:
+
+pythonPackages.buildPythonPackage {
+  name = "grandpa-0.5";
+  namePrefix = "";
+
+  src = fetchgit {
+    url = "git://github.com/aszlig/GrandPA.git";
+    rev = "41f21f67446b98f4600bc043abe32b95af6dd048";
+    sha256 = "06sgz39ri0ai3x2fck44rczk04pj8zcysbhp97x20ggmqhx5vxyh";
+  };
+
+  doCheck = false;
+
+  buildInputs = [ cython gpm ];
+  propagatedBuildInputs = with pythonPackages; [
+    bsddb curses pyserial pyglet
+  ];
+}