about summary refs log tree commit diff
diff options
context:
space:
mode:
-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
   ];