blob: d26675bad7413e869e353e2c7ad1b2a5dbb4ab97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
lib,
fetchFromGitHub,
setuptools,
buildPythonPackage,
eth-utils,
hypothesis,
pytestCheckHook,
pydantic,
}:
buildPythonPackage rec {
pname = "rlp";
version = "4.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ethereum";
repo = "pyrlp";
rev = "v${version}";
hash = "sha256-moerdcAJXqhlzDnTlvxL3Nzz485tOzJVCPlGrof80eQ=";
};
build-system = [ setuptools ];
propagatedBuildInputs = [ eth-utils ];
nativeCheckInputs = [
hypothesis
pytestCheckHook
pydantic
];
pythonImportsCheck = [ "rlp" ];
disabledTests = [ "test_install_local_wheel" ];
meta = {
description = "RLP serialization library";
homepage = "https://github.com/ethereum/pyrlp";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|