diff options
Diffstat (limited to 'pkgs/development/python-modules/ropper/default.nix')
-rw-r--r-- | pkgs/development/python-modules/ropper/default.nix | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/ropper/default.nix b/pkgs/development/python-modules/ropper/default.nix index 973b11de4728..b7f12332711e 100644 --- a/pkgs/development/python-modules/ropper/default.nix +++ b/pkgs/development/python-modules/ropper/default.nix @@ -1,11 +1,11 @@ -{ stdenv -, lib -, buildPythonPackage -, fetchFromGitHub -, capstone -, filebytes -, pytestCheckHook -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + capstone, + filebytes, + pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -27,13 +27,9 @@ buildPythonPackage rec { filebytes ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "ropper" - ]; + pythonImportsCheck = [ "ropper" ]; meta = with lib; { description = "Show information about files in different file formats"; @@ -41,6 +37,5 @@ buildPythonPackage rec { homepage = "https://scoding.de/ropper/"; license = licenses.bsd3; maintainers = with maintainers; [ bennofs ]; - broken = stdenv.isDarwin; }; } |