depot/third_party/nixpkgs/pkgs/development/python-modules/ipdb/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

51 lines
863 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, decorator
, ipython
, isPyPy
, tomli
, setuptools
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "ipdb";
version = "0.13.11";
format = "pyproject";
disabled = isPyPy; # setupterm: could not find terminfo database
src = fetchPypi {
inherit pname version;
hash = "sha256-wjtnNvAf1Fhswuy+vfeaXrRUeWhT4c2PLtO3uR1KPpM=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
ipython
decorator
] ++ lib.optionals (pythonOlder "3.11") [
tomli
];
nativeCheckInputs = [
unittestCheckHook
];
preCheck = ''
export HOME=$(mktemp -d)
'';
meta = with lib; {
homepage = "https://github.com/gotcha/ipdb";
description = "IPython-enabled pdb";
license = licenses.bsd0;
maintainers = [ maintainers.costrouc ];
};
}