diff options
Diffstat (limited to 'pkgs/development/python-modules/ipdb/default.nix')
-rw-r--r-- | pkgs/development/python-modules/ipdb/default.nix | 50 |
1 files changed, 24 insertions, 26 deletions
diff --git a/pkgs/development/python-modules/ipdb/default.nix b/pkgs/development/python-modules/ipdb/default.nix index 96a4274bac1e..84123590fe1b 100644 --- a/pkgs/development/python-modules/ipdb/default.nix +++ b/pkgs/development/python-modules/ipdb/default.nix @@ -1,14 +1,15 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pythonOlder -, decorator -, ipython -, isPyPy -, exceptiongroup -, tomli -, setuptools -, unittestCheckHook +{ + lib, + buildPythonPackage, + fetchPypi, + pythonOlder, + decorator, + ipython, + isPyPy, + exceptiongroup, + tomli, + setuptools, + unittestCheckHook, }: buildPythonPackage rec { @@ -16,28 +17,26 @@ buildPythonPackage rec { version = "0.13.13"; format = "pyproject"; - disabled = isPyPy; # setupterm: could not find terminfo database + disabled = isPyPy; # setupterm: could not find terminfo database src = fetchPypi { inherit pname version; hash = "sha256-46xgGO8FEm1EKvaAqthjAG7BnQIpBWGsiLixwLDPxyY="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - propagatedBuildInputs = [ - ipython - decorator - ] ++ lib.optionals (pythonOlder "3.11") [ - exceptiongroup - tomli - ]; + propagatedBuildInputs = + [ + ipython + decorator + ] + ++ lib.optionals (pythonOlder "3.11") [ + exceptiongroup + tomli + ]; - nativeCheckInputs = [ - unittestCheckHook - ]; + nativeCheckInputs = [ unittestCheckHook ]; preCheck = '' export HOME=$(mktemp -d) @@ -50,5 +49,4 @@ buildPythonPackage rec { license = licenses.bsd0; maintainers = [ ]; }; - } |