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

22 lines
568 B
Nix
Raw Normal View History

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