mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
290a5d916e
Based on "problems" from repology: https://repology.org/repository/nix_unstable/problems Mostly simple changes to reflect redirects.
27 lines
570 B
Nix
27 lines
570 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, ipython
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipdbplugin";
|
|
version = "1.5.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "cdcd6bc1e995c3c2c4971ed95f207e680aa44980b716fa43fb675ff2dcc7894f";
|
|
};
|
|
|
|
propagatedBuildInputs = [ nose ipython ];
|
|
|
|
meta = with stdenv.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 = [ maintainers.costrouc ];
|
|
};
|
|
|
|
}
|