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.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/grandpa/default.nix b/pkgs/grandpa/default.nix
index bc68f157..31d8c783 100644
--- a/pkgs/grandpa/default.nix
+++ b/pkgs/grandpa/default.nix
@@ -1,19 +1,20 @@
-{ fetchgit, buildPythonPackage, pythonPackages, cython, gpm }:
+{ fetchFromGitHub, buildPythonPackage, pythonPackages, cython, gpm }:
 
 pythonPackages.buildPythonPackage {
   name = "grandpa-0.5";
   namePrefix = "";
 
-  src = fetchgit {
-    url = "git://github.com/aszlig/GrandPA.git";
-    rev = "41f21f67446b98f4600bc043abe32b95af6dd048";
-    sha256 = "06sgz39ri0ai3x2fck44rczk04pj8zcysbhp97x20ggmqhx5vxyh";
+  src = fetchFromGitHub {
+    owner = "aszlig";
+    repo = "GrandPA";
+    rev = "c8eb1fc40b20610380583444446b3e62b841df07";
+    sha256 = "0mxf2ddqhbhcgblvivi0hslflabdj0qwyx92zbzayzgwlbqz4hss";
   };
 
   doCheck = false;
 
   buildInputs = [ cython gpm ];
   propagatedBuildInputs = with pythonPackages; [
-    bsddb curses pyserial pyglet
+    bsddb curses pyserial
   ];
 }