forked from mirrors/nixpkgs
python310Packages.r2pipe: disable on older Python releases
This commit is contained in:
parent
897891c73d
commit
fa16b0da31
|
@ -5,11 +5,15 @@
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, radare2
|
, radare2
|
||||||
, coreutils
|
, coreutils
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "r2pipe";
|
pname = "r2pipe";
|
||||||
version = "1.7.4";
|
version = "1.7.4";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
postPatch = let
|
postPatch = let
|
||||||
r2lib = "${lib.getOutput "lib" radare2}/lib";
|
r2lib = "${lib.getOutput "lib" radare2}/lib";
|
||||||
|
|
Loading…
Reference in a new issue