summary refs log tree commit diff
path: root/pkgs/development/interpreters/python
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-08-18 15:03:34 +0000
committerPeter Simons <simons@cryp.to>2010-08-18 15:03:34 +0000
commit0b529ff4d7ed63647a46be5c4b185c368fa8eff8 (patch)
tree909be0079fbe7b97fd1f5509721b9bdd829899d6 /pkgs/development/interpreters/python
parentbe4bd94e3502b2efc5a792bad19ec92311f55189 (diff)
downloadnixlib-0b529ff4d7ed63647a46be5c4b185c368fa8eff8.tar
nixlib-0b529ff4d7ed63647a46be5c4b185c368fa8eff8.tar.gz
nixlib-0b529ff4d7ed63647a46be5c4b185c368fa8eff8.tar.bz2
nixlib-0b529ff4d7ed63647a46be5c4b185c368fa8eff8.tar.lz
nixlib-0b529ff4d7ed63647a46be5c4b185c368fa8eff8.tar.xz
nixlib-0b529ff4d7ed63647a46be5c4b185c368fa8eff8.tar.zst
nixlib-0b529ff4d7ed63647a46be5c4b185c368fa8eff8.zip
pkgs/development/interpreters/python/2.7: added various meta attributes
svn path=/nixpkgs/trunk/; revision=23228
Diffstat (limited to 'pkgs/development/interpreters/python')
-rw-r--r--pkgs/development/interpreters/python/2.7/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix
index 1b828cd51606..d9ec86088bb8 100644
--- a/pkgs/development/interpreters/python/2.7/default.nix
+++ b/pkgs/development/interpreters/python/2.7/default.nix
@@ -92,6 +92,18 @@ stdenv.mkDerivation ( {
   enableParallelBuilding = true;
 
   meta = {
+    homepage = "http://python.org";
+    description = "Python -- 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 ];
   };