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:
parent
0f633fdfc6
commit
8095d76a73
28
pkgs/applications/science/spyder/default.nix
Normal file
28
pkgs/applications/science/spyder/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user