diff options
Diffstat (limited to 'pkgs/development/python-modules/angrcli/default.nix')
-rw-r--r-- | pkgs/development/python-modules/angrcli/default.nix | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/angrcli/default.nix b/pkgs/development/python-modules/angrcli/default.nix index cd2bf2f5508f..0e3fa66f2486 100644 --- a/pkgs/development/python-modules/angrcli/default.nix +++ b/pkgs/development/python-modules/angrcli/default.nix @@ -1,14 +1,15 @@ -{ lib -, angr -, buildPythonPackage -, cmd2 -, coreutils -, fetchFromGitHub -, pygments -, pytestCheckHook -, pythonOlder -, setuptools -, stdenv +{ + lib, + angr, + buildPythonPackage, + cmd2, + coreutils, + fetchFromGitHub, + pygments, + pytestCheckHook, + pythonOlder, + setuptools, + stdenv, }: buildPythonPackage rec { @@ -30,9 +31,7 @@ buildPythonPackage rec { --replace-fail "/bin/ls" "${coreutils}/bin/ls" ''; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; dependencies = [ angr @@ -52,9 +51,7 @@ buildPythonPackage rec { "test_max_depth" ]; - pythonImportsCheck = [ - "angrcli" - ]; + pythonImportsCheck = [ "angrcli" ]; meta = with lib; { description = "Python modules to allow easier interactive use of angr"; |