2018-06-25 09:53:18 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, pytest }:
|
2018-04-13 18:35:29 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rlp";
|
2018-06-25 09:53:18 +01:00
|
|
|
version = "0.6.0";
|
2018-04-13 18:35:29 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-25 09:53:18 +01:00
|
|
|
sha256 = "0d3gx4mp8q4z369s5yk1n9c55sgfw9fidbwqxq67d6s7l45rm1w7";
|
2018-04-13 18:35:29 +01:00
|
|
|
};
|
|
|
|
|
2018-06-25 09:53:18 +01:00
|
|
|
checkInputs = [ pytest ];
|
2018-06-22 12:03:28 +01:00
|
|
|
propagatedBuildInputs = [ ];
|
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 ];
|
|
|
|
};
|
|
|
|
}
|