pythonPackages.rlp: fix build
This commit is contained in:
parent
9f8e6148c5
commit
f053daf36c
|
@ -1,4 +1,4 @@
|
||||||
{ lib, fetchPypi, buildPythonPackage, pytest }:
|
{ lib, fetchPypi, buildPythonPackage, pytest, hypothesis, eth-utils }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "rlp";
|
pname = "rlp";
|
||||||
|
@ -9,8 +9,18 @@ buildPythonPackage rec {
|
||||||
sha256 = "040fb5172fa23d27953a886c40cac989fc031d0629db934b5a9edcd2fb28df1e";
|
sha256 = "040fb5172fa23d27953a886c40cac989fc031d0629db934b5a9edcd2fb28df1e";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytest hypothesis ];
|
||||||
propagatedBuildInputs = [ ];
|
propagatedBuildInputs = [ eth-utils ];
|
||||||
|
|
||||||
|
# setuptools-markdown uses pypandoc which is broken at the moment
|
||||||
|
preConfigure = ''
|
||||||
|
substituteInPlace setup.py --replace \'setuptools-markdown\' ""
|
||||||
|
substituteInPlace setup.py --replace "long_description_markdown_filename='README.md'," ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest .
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A package for encoding and decoding data in and from Recursive Length Prefix notation";
|
description = "A package for encoding and decoding data in and from Recursive Length Prefix notation";
|
||||||
|
|
Loading…
Reference in New Issue