about summary refs log tree commit diff
path: root/pkgs/grandpa/default.nix
blob: f3bb9f9568aa7d259d5dac84b6fe825a3bb5841a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ fetchFromGitHub, buildPythonPackage, pythonPackages, cython, gpm }:

pythonPackages.buildPythonPackage {
  name = "grandpa-0.5";
  namePrefix = "";

  src = fetchFromGitHub {
    owner = "aszlig";
    repo = "GrandPA";
    rev = "a01900bc9921a102f85de011d1c655b2d831714c";
    sha256 = "1ynvsn74djdjmyybbpfzdc7m2zkz5raph7nfyklx8alsbwr8n40s";
  };

  doCheck = false;

  buildInputs = [ cython gpm ];
  propagatedBuildInputs = with pythonPackages; [
    bsddb curses pyserial
  ];
}