depot/third_party/nixpkgs/pkgs/development/python-modules/ipdbplugin/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

27 lines
566 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, nose
, ipython
}:
buildPythonPackage rec {
pname = "ipdbplugin";
version = "1.5.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "cdcd6bc1e995c3c2c4971ed95f207e680aa44980b716fa43fb675ff2dcc7894f";
};
propagatedBuildInputs = [ nose ipython ];
meta = with lib; {
homepage = "https://github.com/flavioamieiro/nose-ipdb/tree/master";
description = "Nose plugin to use iPdb instead of Pdb when tests fail";
license = licenses.lgpl2;
maintainers = [ ];
};
}