summary refs log tree commit diff
path: root/pkgs/development/python-modules/rlp/default.nix
blob: fd4816c3bb57882186739049dd8b95c7257c4008 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, fetchPypi, buildPythonPackage, pytest, hypothesis }:

buildPythonPackage rec {
  pname = "rlp";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "492c11b18e89af42f98e96bca7671ffee4ad4cf5e69ea23b4d2221157d81b512";
  };

  checkInputs = [ pytest hypothesis ];
  propagatedBuildInputs = [ ];

  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 ];
    broken = true; # Requires a chain of unpackaged dependencies.
  };
}