about summary refs log tree commit diff
path: root/pkgs/grandpa
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-08-16 00:31:49 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-08-16 00:31:49 +0200
commitc738b78ed9c2c07b6b6c767edd3cd8c87b40087f (patch)
treefe7fe90f7d85f0e26e068c46dbc532a01c509975 /pkgs/grandpa
parenta820823edf4902f5d1e88541a83e54ed3332ea7a (diff)
pkgs/grandpa: Use Cython from pythonPackages
The top-level package doesn't exist anymore and has been removed in
NixOS/nixpkgs@11d1fdfd8bf5411218571ef9fb9441705b23c459.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/grandpa')
-rw-r--r--pkgs/grandpa/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/grandpa/default.nix b/pkgs/grandpa/default.nix
index b1704538..f8aaf62c 100644
--- a/pkgs/grandpa/default.nix
+++ b/pkgs/grandpa/default.nix
@@ -1,4 +1,4 @@
-{ fetchFromGitHub, buildPythonPackage, pythonPackages, cython, gpm }:
+{ fetchFromGitHub, buildPythonPackage, pythonPackages, gpm }:
 
 pythonPackages.buildPythonPackage {
   name = "grandpa-0.5";
@@ -13,7 +13,7 @@ pythonPackages.buildPythonPackage {
 
   doCheck = false;
 
-  buildInputs = [ cython gpm ];
+  buildInputs = [ pythonPackages.cython gpm ];
   propagatedBuildInputs = with pythonPackages; [
     bsddb curses pyserial
   ];