summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Ostrouchov <chris.ostrouchov@gmail.com>2019-04-08 14:27:32 -0400
committerTimo Kaufmann <timokau@zoho.com>2019-04-08 18:27:32 +0000
commit7bb8ef318ed15c2b4b03ebbdf7d924889ca6d1f5 (patch)
tree092ba9a1f70fc53ac3fc32c3dfe4cd6899093c35
parentMerge pull request #58761 from r-ryantm/auto-update/pulumi (diff)
downloadnixpkgs-7bb8ef318ed15c2b4b03ebbdf7d924889ca6d1f5.tar.gz
pythonPackages.ipdb: 0.8.1 -> 0.12 (#58965)
-rw-r--r--pkgs/development/python-modules/ipdb/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/ipdb/default.nix b/pkgs/development/python-modules/ipdb/default.nix
index 3203963b29da..f31b9013d94b 100644
--- a/pkgs/development/python-modules/ipdb/default.nix
+++ b/pkgs/development/python-modules/ipdb/default.nix
@@ -7,17 +7,20 @@
buildPythonPackage rec {
pname = "ipdb";
- version = "0.8.1";
+ version = "0.12";
disabled = isPyPy; # setupterm: could not find terminfo database
src = fetchPypi {
inherit pname version;
- extension = "zip";
- sha256 = "1763d1564113f5eb89df77879a8d3213273c4d7ff93dcb37a3070cdf0c34fd7c";
+ sha256 = "dce2112557edfe759742ca2d0fee35c59c97b0cc7a05398b791079d78f1519ce";
};
propagatedBuildInputs = [ ipython ];
+ preCheck = ''
+ export HOME=$(mktemp -d)
+ '';
+
meta = with stdenv.lib; {
homepage = https://github.com/gotcha/ipdb;
description = "IPython-enabled pdb";