depot/third_party/nixpkgs/pkgs/development/python-modules/rzpipe/default.nix

33 lines
657 B
Nix
Raw Normal View History

{
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 ];
};
}