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

23 lines
657 B
Nix
Raw Normal View History

2018-06-22 11:03:28 +00:00
{ lib, fetchPypi, buildPythonPackage, pytest, hypothesis }:
2018-04-13 17:35:29 +00:00
buildPythonPackage rec {
pname = "rlp";
2018-06-12 16:47:06 +00:00
version = "1.0.1";
2018-04-13 17:35:29 +00:00
src = fetchPypi {
inherit pname version;
2018-06-12 16:47:06 +00:00
sha256 = "492c11b18e89af42f98e96bca7671ffee4ad4cf5e69ea23b4d2221157d81b512";
2018-04-13 17:35:29 +00:00
};
2018-06-22 11:03:28 +00:00
checkInputs = [ pytest hypothesis ];
propagatedBuildInputs = [ ];
2018-04-13 17:35:29 +00: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 ];
2018-06-22 11:03:28 +00:00
broken = true; # Requires a chain of unpackaged dependencies.
2018-04-13 17:35:29 +00:00
};
}