about summary refs log tree commit diff
path: root/pkgs/grandpa/default.nix
blob: bc68f1577fa78f316e599e5f5c2ea62cfb25311c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
  ];
}