about summary refs log tree commit diff
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-10-27 01:15:34 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-10-27 01:15:34 +0200
commit65c8919d0da4494786ee28fef6da97ac59fcee1a (patch)
tree2220d7493cc05d37ec54efcddac7f06a5b6ecf66
parent93ddd2e1a5d5d480a51494407809e1a2416225b5 (diff)
pkgs/grandpa: Remove dependency on bsddb
It seems (haven't really tested) that since
NixOS/nixpkgs@bee439207bd729eee0bf5dcae5be44320cee45cd using bsddb is no
longer necessary and built in into Python.

I haven't tested whether this is true or not, but the attribute is gone
so let's make sure that the expression evaluates for now.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
-rw-r--r--pkgs/grandpa/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/grandpa/default.nix b/pkgs/grandpa/default.nix
index 5baa888b..6e03e1db 100644
--- a/pkgs/grandpa/default.nix
+++ b/pkgs/grandpa/default.nix
@@ -15,6 +15,6 @@ pythonPackages.buildPythonPackage {
 
   buildInputs = [ pythonPackages.cython gpm ];
   propagatedBuildInputs = with pythonPackages; [
-    bsddb curses pyserial
+    curses pyserial
   ];
 }