Files
nixpkgs/pkgs/development/python-modules/rlp/default.nix
T

22 lines
556 B
Nix
Raw Normal View History

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