about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-10-27 01:28:09 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-10-27 01:29:48 +0200
commit711e499942871d4a122178b4ac093176d5ed10ff (patch)
treeb022317a8acb724307e6038562938f8e8c4e9d64 /pkgs
parent65c8919d0da4494786ee28fef6da97ac59fcee1a (diff)
pkgs/grandpa: Remove dependency on curses
Follow up to 65c8919d0da4494786ee28fef6da97ac59fcee1a.

Another attribute that is now gone since
NixOS/nixpkgs@bee439207bd729eee0bf5dcae5be44320cee45cd.

However, I've tested evaluation on the package this time.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/grandpa/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/grandpa/default.nix b/pkgs/grandpa/default.nix
index 6e03e1db..f37f6b2f 100644
--- a/pkgs/grandpa/default.nix
+++ b/pkgs/grandpa/default.nix
@@ -14,7 +14,5 @@ pythonPackages.buildPythonPackage {
   doCheck = false;
 
   buildInputs = [ pythonPackages.cython gpm ];
-  propagatedBuildInputs = with pythonPackages; [
-    curses pyserial
-  ];
+  propagatedBuildInputs = [ pythonPackages.pyserial ];
 }