3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.rlp: init at 0.6.0

This commit is contained in:
Gabriel Ebner 2018-04-13 19:35:29 +02:00
parent 1659a29fef
commit 67dbfd3fc1
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ lib, fetchPypi, buildPythonPackage, pytest }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "rlp";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "0d3gx4mp8q4z369s5yk1n9c55sgfw9fidbwqxq67d6s7l45rm1w7";
};
buildInputs = [ pytest ];
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 ];
};
}

View file

@ -410,6 +410,8 @@ in {
rhpl = disabledIf isPy3k (callPackage ../development/python-modules/rhpl {});
rlp = callPackage ../development/python-modules/rlp { };
rx = callPackage ../development/python-modules/rx { };
salmon-mail = callPackage ../development/python-modules/salmon-mail { };