From c60fad3978cda6ab3a27c07f7dc4804394080bdb Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 2 Feb 2011 11:16:49 +0000 Subject: pkgs/development/interpreters/python/3.1: added missing meta section attributes svn path=/nixpkgs/trunk/; revision=25753 --- pkgs/development/interpreters/python/3.1/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'pkgs/development/interpreters/python') diff --git a/pkgs/development/interpreters/python/3.1/default.nix b/pkgs/development/interpreters/python/3.1/default.nix index 44e61ce4b62e..9b1831ba881e 100644 --- a/pkgs/development/interpreters/python/3.1/default.nix +++ b/pkgs/development/interpreters/python/3.1/default.nix @@ -92,6 +92,19 @@ stdenv.mkDerivation ( { }; 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 {} ) ) -- cgit 1.4.1