nixpkgs/pkgs/development/python-modules/rlp/default.nix
Profpatsch 367a7ae138 pythonPackages.rlp: revert to working 0.6.0
It is required by electrum.
2018-06-25 10:53:18 +02:00

22 lines
556 B
Nix

{ lib, fetchPypi, buildPythonPackage, pytest }:
buildPythonPackage rec {
pname = "rlp";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "0d3gx4mp8q4z369s5yk1n9c55sgfw9fidbwqxq67d6s7l45rm1w7";
};
checkInputs = [ pytest ];
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 ];
};
}