Merge pull request #502 from bjornfor/spyder

spyder: new package
This commit is contained in:
Phreedom 2013-05-05 05:50:30 -07:00
commit ec696600e1
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