spyder: new package

Spyder (previously known as Pydee) is a powerful interactive development
environment for the Python language with advanced editing, interactive
testing, debugging and introspection features.

The name Spyder comes from Scientific PYthon Development EnviRonment.
This commit is contained in:
Bjørn Forsman 2013-05-05 13:13:45 +02:00
parent 0f633fdfc6
commit 8095d76a73
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ stdenv, fetchurl, buildPythonPackage, unzip, sphinx, pyside }:
buildPythonPackage rec {
name = "spyder-2.1.13.1";
namePrefix = "";
src = fetchurl {
url = "https://spyderlib.googlecode.com/files/${name}.zip";
sha256 = "1sg88shvw6k2v5428k13mah4pyqng43856rzr6ypz5qgwn0677ya";
};
buildInputs = [ unzip sphinx ];
propagatedBuildInputs = [ pyside ];
# There is no test for spyder
doCheck = false;
meta = {
description = "Scientific PYthon Development EnviRonment (SPYDER)";
longDescription = ''
Spyder (previously known as Pydee) is a powerful interactive development
environment for the Python language with advanced editing, interactive
testing, debugging and introspection features.
'';
homepage = https://code.google.com/p/spyderlib/;
license = stdenv.lib.licenses.mit;
};
}

View File

@ -8716,6 +8716,10 @@ let
gravit = callPackage ../applications/science/astronomy/gravit { };
spyder = callPackage ../applications/science/spyder {
inherit (pythonPackages) sphinx;
};
stellarium = callPackage ../applications/science/astronomy/stellarium { };
### SCIENCE/GEOMETRY