summary refs log tree commit diff
path: root/pkgs/development/python-modules/rlp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/rlp/default.nix')
-rw-r--r--pkgs/development/python-modules/rlp/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/rlp/default.nix b/pkgs/development/python-modules/rlp/default.nix
index 791b62920eeb..fd4816c3bb57 100644
--- a/pkgs/development/python-modules/rlp/default.nix
+++ b/pkgs/development/python-modules/rlp/default.nix
@@ -1,7 +1,6 @@
-{ lib, fetchPypi, buildPythonPackage, pytest }:
+{ lib, fetchPypi, buildPythonPackage, pytest, hypothesis }:
 
 buildPythonPackage rec {
-  name = "${pname}-${version}";
   pname = "rlp";
   version = "1.0.1";
 
@@ -10,12 +9,14 @@ buildPythonPackage rec {
     sha256 = "492c11b18e89af42f98e96bca7671ffee4ad4cf5e69ea23b4d2221157d81b512";
   };
 
-  buildInputs = [ pytest ];
+  checkInputs = [ pytest hypothesis ];
+  propagatedBuildInputs = [ ];
 
   meta = {
     description = "A package for encoding and decoding data in and from Recursive Length Prefix notation";
     homepage = "https://github.com/ethereum/pyrlp";
     license = lib.licenses.mit;
     maintainers = with lib.maintainers; [ gebner ];
+    broken = true; # Requires a chain of unpackaged dependencies.
   };
 }