1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

Merge pull request #75340 from r-ryantm/auto-update/python3.8-ipdb

python38Packages.ipdb: 0.12.2 -> 0.12.3
This commit is contained in:
Mario Rodas 2019-12-09 20:42:13 -05:00 committed by GitHub
commit b457803067
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "ipdb";
version = "0.12.2";
version = "0.12.3";
disabled = isPyPy; # setupterm: could not find terminfo database
src = fetchPypi {
inherit pname version;
sha256 = "0mzfv2sa8qabqzh2vqgwhavb15gsmcgqn6i3jgq6b5q9i9wxsgs7";
sha256 = "1zbj7xjhkr44grfyv1hb7ff5n1218f9jjabgzica29vh7c74m6jx";
};
propagatedBuildInputs = [ ipython ];