summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-06-22 13:03:28 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-06-22 13:09:51 +0200
commite00ddc62b2737304ade27d04da5a5d5751ae9ae6 (patch)
tree0858459f980960a883816c53f113699d65b43349
parent9e10e51161c2f459b386af6bce1a984a3f347204 (diff)
downloadnixlib-e00ddc62b2737304ade27d04da5a5d5751ae9ae6.tar
nixlib-e00ddc62b2737304ade27d04da5a5d5751ae9ae6.tar.gz
nixlib-e00ddc62b2737304ade27d04da5a5d5751ae9ae6.tar.bz2
nixlib-e00ddc62b2737304ade27d04da5a5d5751ae9ae6.tar.lz
nixlib-e00ddc62b2737304ade27d04da5a5d5751ae9ae6.tar.xz
nixlib-e00ddc62b2737304ade27d04da5a5d5751ae9ae6.tar.zst
nixlib-e00ddc62b2737304ade27d04da5a5d5751ae9ae6.zip
python.pkgs.rlp: mark as broken
-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.
   };
 }