all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nicolas Graves via Guix-patches via <guix-patches@gnu.org>
To: 57094@debbugs.gnu.org
Cc: ngraves@ngraves.fr
Subject: [bug#57094] [PATCH 6/9] gnu: Add python-django-pattern-library.
Date: Wed, 10 Aug 2022 00:43:30 +0200	[thread overview]
Message-ID: <20220809224333.28437-6-ngraves@ngraves.fr> (raw)
In-Reply-To: <20220809224333.28437-1-ngraves@ngraves.fr>

* gnu/packages/django.scm (python-django-pattern-library): New variable.
---
 gnu/packages/django.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 4b2c255ee7..4315f40cc5 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -785,6 +785,39 @@ (define-public python-dj-database-url
 conn_max_age argument to easily enable Django’s connection pool.")
     (license license:bsd-2)))
 
+(define-public python-django-pattern-library
+  (package
+    (name "python-django-pattern-library")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "django-pattern-library" version))
+       (sha256
+        (base32 "1s2s1sgrdrrizf2zmgijjxhv5q4pislggb34v2v4c27nd9ha981x"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda* (#:key tests? inputs #:allow-other-keys)
+             (if tests?
+                 (lambda _
+                   (setenv "PYTHONPATH"
+                           (string-append ".:" (getenv "GUIX_PYTHONPATH")))
+                   (setenv "DJANGO_SETTINGS_MODULE" "treebeard.tests.settings")
+                   (substitute* "setup.py" ((".*pythonpath.*") ""))
+                   (invoke "pytest" "-vv"))
+                 (format #t "test suite not run~%")))))))
+    (propagated-inputs (list python-django python-markdown python-pyyaml))
+    (home-page "https://github.com/torchbox/django-pattern-library")
+    (synopsis
+     "Build pattern libraries for your Django projects")
+    (description
+     "This package provides a module for Django that allows to build pattern libraries
+for your projects.")
+    (license license:bsd-3)))
+
 (define-public python-django-permissionedforms
   (package
     (name "python-django-permissionedforms")
-- 
2.37.1





  parent reply	other threads:[~2022-08-09 22:44 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-09 22:37 [bug#57094] Updating wagtail to 3.0 Nicolas Graves via Guix-patches via
2022-08-09 22:43 ` [bug#57094] [PATCH 1/9] gnu: python-django-modelcluster: Update to 6.0 Nicolas Graves via Guix-patches via
2022-08-09 22:43   ` [bug#57094] [PATCH 2/9] gnu: Add python-django-permissionedforms Nicolas Graves via Guix-patches via
2022-08-09 22:43   ` [bug#57094] [PATCH 3/9] gnu: Add python-curlylint Nicolas Graves via Guix-patches via
2022-08-09 22:43   ` [bug#57094] [PATCH 4/9] gnu: Add python-flake8-assertive Nicolas Graves via Guix-patches via
2022-08-09 22:43   ` [bug#57094] [PATCH 5/9] gnu: Add python-flake8-comprehensions Nicolas Graves via Guix-patches via
2022-08-09 22:43   ` Nicolas Graves via Guix-patches via [this message]
2022-08-09 22:43   ` [bug#57094] [PATCH 7/9] gnu: Add python-nox Nicolas Graves via Guix-patches via
2022-08-09 22:43   ` [bug#57094] [PATCH 8/9] gnu: Add python-djhtml Nicolas Graves via Guix-patches via
2022-08-09 22:43   ` [bug#57094] [PATCH 9/9] gnu: python-wagtail: Update to 3.0.1 Nicolas Graves via Guix-patches via

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=20220809224333.28437-6-ngraves@ngraves.fr \
    --to=guix-patches@gnu.org \
    --cc=57094@debbugs.gnu.org \
    --cc=ngraves@ngraves.fr \
    /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.