all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Hartmut Goebel <h.goebel@crazy-compilers.com>
To: guix-devel@gnu.org
Subject: [PATCH 1/2] gnu: add python-django
Date: Tue, 12 Apr 2016 22:32:29 +0200	[thread overview]
Message-ID: <1460493150-7989-2-git-send-email-h.goebel@crazy-compilers.com> (raw)
In-Reply-To: <1460493150-7989-1-git-send-email-h.goebel@crazy-compilers.com>

* gnu/packages/django.scm: New file.
* gnu-system.am: Add it.
---
 gnu-system.am           |  1 +
 gnu/packages/django.scm | 60 +++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 gnu/packages/django.scm

diff --git a/gnu-system.am b/gnu-system.am
index 8822d0b..09acb64 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -90,6 +90,7 @@ GNU_SYSTEM_MODULES =				\
   gnu/packages/dico.scm				\
   gnu/packages/dictionaries.scm			\
   gnu/packages/disk.scm				\
+  gnu/packages/django.scm			\
   gnu/packages/djvu.scm				\
   gnu/packages/dns.scm				\
   gnu/packages/docbook.scm			\
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
new file mode 100644
index 0000000..c22830e
--- /dev/null
+++ b/gnu/packages/django.scm
@@ -0,0 +1,60 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages django)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (guix build-system python)
+  #:use-module (gnu packages python)
+)
+
+
+(define-public python-django
+(package
+  (name "python-django")
+  (version "1.9.5")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (pypi-uri "Django" version))
+      (sha256
+        (base32
+          "19kaw9flk9jjz1n7q378waybxnkrrhkq240lby4zaaas62nnfip5"))))
+  (build-system python-build-system)
+  (inputs
+    `(("python-setuptools" ,python-setuptools)))
+  (home-page "http://www.djangoproject.com/")
+  (synopsis
+    "High-level Python Web framework")
+  (description
+"Django is a high-level Python Web framework that encourages rapid
+development and clean, pragmatic design.
+
+Developed and used over the past two years by a fast-moving
+online-news operation, Django was designed from scratch to handle two
+challenges: the intensive deadlines of a newsroom and the stringent
+requirements of experienced Web developers. It has convenient niceties
+for developing content-management systems, but it's an excellent tool
+for building any Web site.
+
+Django focuses on automating as much as possible and adhering to the
+DRY principle.")
+  (license license:bsd-3)))
+
+
-- 
2.7.4

  reply	other threads:[~2016-04-12 20:32 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-12 20:32 [PATCH 0/2] Python Django Framework Hartmut Goebel
2016-04-12 20:32 ` Hartmut Goebel [this message]
2016-04-15 21:52   ` [PATCH 1/2] gnu: add python-django Ludovic Courtès
2016-04-16  9:13     ` Hartmut Goebel
2016-04-12 20:32 ` [PATCH 2/2] gnu: add python-django-simple-math-captcha Hartmut Goebel
  -- strict thread matches above, loose matches on Subject: below --
2016-08-22 11:31 [PATCH 0/2] Django framework Hartmut Goebel
2016-08-22 11:31 ` [PATCH 1/2] gnu: add python-django Hartmut Goebel
2016-09-08 17:11   ` Efraim Flashner
2016-09-12 13:30   ` Ludovic Courtès
2016-09-12 13:58     ` Hartmut Goebel
2016-09-12 21:07       ` Ludovic Courtès
2016-09-15 20:20         ` Hartmut Goebel
2016-09-19 14:42           ` Ludovic Courtès
2016-09-19 14:58             ` Hartmut Goebel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1460493150-7989-2-git-send-email-h.goebel@crazy-compilers.com \
    --to=h.goebel@crazy-compilers.com \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.