about summary refs log tree commit diff
path: root/pkgs/applications/science/spyder
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/science/spyder')
-rw-r--r--pkgs/applications/science/spyder/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/science/spyder/default.nix b/pkgs/applications/science/spyder/default.nix
index 6c0125e4b850..268484c07353 100644
--- a/pkgs/applications/science/spyder/default.nix
+++ b/pkgs/applications/science/spyder/default.nix
@@ -42,7 +42,7 @@ buildPythonPackage rec {
     cp spyderlib/images/spyder.svg $out/share/icons/
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Scientific PYthon Development EnviRonment (SPYDER)";
     longDescription = ''
       Spyder (previously known as Pydee) is a powerful interactive development
@@ -50,6 +50,8 @@ buildPythonPackage rec {
       testing, debugging and introspection features.
     '';
     homepage = https://code.google.com/p/spyderlib/;
-    license = stdenv.lib.licenses.mit;
+    license = licenses.mit;
+    platforms = platforms.linux;
+    maintainers = maintainers.bjornfor;
   };
 }