22 lines
568 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, pytest }:
2018-04-13 19:35:29 +02:00
buildPythonPackage rec {
pname = "rlp";
2018-08-13 09:32:18 +02:00
version = "1.0.2";
2018-04-13 19:35:29 +02:00
src = fetchPypi {
inherit pname version;
2018-08-13 09:32:18 +02:00
sha256 = "040fb5172fa23d27953a886c40cac989fc031d0629db934b5a9edcd2fb28df1e";
2018-04-13 19:35:29 +02:00
};
checkInputs = [ pytest ];
2018-06-22 13:03:28 +02:00
propagatedBuildInputs = [ ];
2018-04-13 19:35:29 +02: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 ];
};
}