mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
pythonPackages.ipdbplugin: refactor move to python-modules
This commit is contained in:
parent
2750333f9d
commit
85731ef51c
26
pkgs/development/python-modules/ipdbplugin/default.nix
Normal file
26
pkgs/development/python-modules/ipdbplugin/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, nose
|
||||||
|
, ipython
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "ipdbplugin";
|
||||||
|
version = "1.4";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "4778d78b5d0af1a2a6d341aed9e72eb73b1df6b179e145b4845d3a209137029c";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ nose ipython ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -5593,14 +5593,7 @@ in {
|
|||||||
|
|
||||||
ipdb = callPackage ../development/python-modules/ipdb { };
|
ipdb = callPackage ../development/python-modules/ipdb { };
|
||||||
|
|
||||||
ipdbplugin = buildPythonPackage {
|
ipdbplugin = callPackage ../development/python-modules/ipdbplugin { };
|
||||||
name = "ipdbplugin-1.4";
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/i/ipdbplugin/ipdbplugin-1.4.tar.gz";
|
|
||||||
sha256 = "4778d78b5d0af1a2a6d341aed9e72eb73b1df6b179e145b4845d3a209137029c";
|
|
||||||
};
|
|
||||||
propagatedBuildInputs = with self; [ self.nose self.ipython ];
|
|
||||||
};
|
|
||||||
|
|
||||||
pythonIRClib = buildPythonPackage rec {
|
pythonIRClib = buildPythonPackage rec {
|
||||||
name = "irclib-${version}";
|
name = "irclib-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user