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