2018-08-26 12:13:24 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, pytest, hypothesis, eth-utils }:
|
2018-04-13 18:35:29 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rlp";
|
2019-12-19 19:31:22 +00:00
|
|
|
version = "1.2.0";
|
2018-04-13 18:35:29 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 19:31:22 +00:00
|
|
|
sha256 = "27273fc2dbc3513c1e05ea6b8af28aac8745fb09c164e39e2ed2807bf7e1b342";
|
2018-04-13 18:35:29 +01:00
|
|
|
};
|
|
|
|
|
2018-08-26 12:13:24 +01:00
|
|
|
checkInputs = [ pytest hypothesis ];
|
|
|
|
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 .
|
|
|
|
'';
|
2018-04-13 18:35:29 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|