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

22 lines
556 B
Nix
Raw Normal View History

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