Author: simons
Date: Wed Feb  2 11:16:49 2011
New Revision: 25753
URL: https://svn.nixos.org/websvn/nix/?rev=25753&sc=1

Log:
pkgs/development/interpreters/python/3.1: added missing meta section attributes

Modified:
   nixpkgs/trunk/pkgs/development/interpreters/python/3.1/default.nix

Modified: nixpkgs/trunk/pkgs/development/interpreters/python/3.1/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/interpreters/python/3.1/default.nix  Wed Feb 
 2 11:16:45 2011        (r25752)
+++ nixpkgs/trunk/pkgs/development/interpreters/python/3.1/default.nix  Wed Feb 
 2 11:16:49 2011        (r25753)
@@ -92,6 +92,19 @@
   };
 
   meta = {
+    homepage = "http://python.org";;
+    description = "a high-level dynamically-typed programming language";
+    longDescription = ''
+      Python is a remarkably powerful dynamic programming language that
+      is used in a wide variety of application domains. Some of its key
+      distinguishing features include: clear, readable syntax; strong
+      introspection capabilities; intuitive object orientation; natural
+      expression of procedural code; full modularity, supporting
+      hierarchical packages; exception-based error handling; and very
+      high level dynamic data types.
+    '';
+    license = "GPLv2";
     platforms = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.simons ];
   };
 } // (if stdenv.isDarwin then { NIX_CFLAGS_COMPILE = "-msse2" ; patches = 
[./search-path.patch]; } else {} ) )
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to