about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rlp/default.nix
blob: 6443a4e2bbfe8713080370843b8bbbe04f6c0e9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 ];
  };
}