python3Packages.rzpipe: init at 0.1.1
This commit is contained in:
parent
6aae893f3d
commit
c5477e635e
31
pkgs/development/python-modules/rzpipe/default.nix
Normal file
31
pkgs/development/python-modules/rzpipe/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rzpipe";
|
||||
version = "0.1.1";
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "13z88c4zjy10a1sc98ba25sz200v6w2wprbq4iknm4sy2fmrsydh";
|
||||
};
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
}
|
@ -8086,6 +8086,8 @@ in {
|
||||
|
||||
rxv = callPackage ../development/python-modules/rxv { };
|
||||
|
||||
rzpipe = callPackage ../development/python-modules/rzpipe { };
|
||||
|
||||
s2clientprotocol = callPackage ../development/python-modules/s2clientprotocol { };
|
||||
|
||||
s3fs = callPackage ../development/python-modules/s3fs { };
|
||||
|
Loading…
Reference in New Issue
Block a user