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

22 lines
569 B
Nix
Raw Normal View History

2018-04-13 18:35:29 +01:00
{ lib, fetchPypi, buildPythonPackage, pytest }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "rlp";
2018-06-12 17:47:06 +01:00
version = "1.0.1";
2018-04-13 18:35:29 +01:00
src = fetchPypi {
inherit pname version;
2018-06-12 17:47:06 +01:00
sha256 = "492c11b18e89af42f98e96bca7671ffee4ad4cf5e69ea23b4d2221157d81b512";
2018-04-13 18:35:29 +01:00
};
buildInputs = [ pytest ];
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 ];
};
}