nixpkgs/pkgs/development/python-modules/rzpipe/default.nix
2023-08-09 21:54:20 +02:00

34 lines
657 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "rzpipe";
version = "0.6.0";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
hash = "sha256-py4oiNp+WUcOGHn2AdHyIpgV8BsI8A1gtJi2joi1Wxc=";
};
# No native rz_core library
doCheck = false;
pythonImportsCheck = [
"rzpipe"
];
meta = with lib; {
description = "Python interface for rizin";
homepage = "https://rizin.re";
changelog = "https://github.com/rizinorg/rizin/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}