1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/rlp/default.nix

23 lines
657 B
Nix
Raw Normal View History

2018-06-22 12:03:28 +01:00
{ lib, fetchPypi, buildPythonPackage, pytest, hypothesis }:
2018-04-13 18:35:29 +01:00
buildPythonPackage rec {
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
};
2018-06-22 12:03:28 +01:00
checkInputs = [ pytest hypothesis ];
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 ];
2018-06-22 12:03:28 +01:00
broken = true; # Requires a chain of unpackaged dependencies.
2018-04-13 18:35:29 +01:00
};
}