1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pythonOlder,
6 setuptools,
7}:
8
9buildPythonPackage rec {
10 pname = "rzpipe";
11 version = "0.6.2";
12 pyproject = true;
13
14 disabled = pythonOlder "3.10";
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-KKqPFMGgsmiYZ0tXTIhhvhLDfm/iV8JcYeVc4akezYc=";
19 };
20
21 build-system = [ setuptools ];
22
23 # No native rz_core library
24 doCheck = false;
25
26 pythonImportsCheck = [ "rzpipe" ];
27
28 meta = with lib; {
29 description = "Python interface for rizin";
30 homepage = "https://rizin.re";
31 changelog = "https://github.com/rizinorg/rizin/releases/tag/v${version}";
32 license = licenses.mit;
33 maintainers = with maintainers; [ fab ];
34 };
35}