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