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

32 lines
556 B
Nix
Raw Normal View History

2021-10-05 20:09:07 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "rzpipe";
2021-10-22 08:52:40 +02:00
version = "0.1.2";
2021-10-05 20:09:07 +02:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2021-10-22 08:52:40 +02:00
sha256 = "sha256-va56xSWDIVtZ88QUzPfk8cCr28+5nZCNcSJMiVj3SZU=";
2021-10-05 20:09:07 +02:00
};
# No native rz_core library
doCheck = false;
pythonImportsCheck = [
"rzpipe"
];
meta = with lib; {
description = "Python interface for rizin";
homepage = "https://rizin.re";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}