all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 63806@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>, jgart <jgart@dismail.de>
Subject: [bug#63806] [PATCH 10/18] gnu: Add python-parsley.
Date: Tue, 30 May 2023 20:58:40 +0100	[thread overview]
Message-ID: <64c71532912225594039185964bbc7a564a6cf2d.1685475211.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1685475210.git.sharlatanus@gmail.com>

* gnu/packages/python-xyz.scm (python-parsley): New variable.
---
 gnu/packages/python-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f7e3f6f538..b8ee05df05 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3811,6 +3811,36 @@ (define-public python-parse
 syntax.")
     (license license:x11)))
 
+(define-public python-parsley
+  (package
+    (name "python-parsley")
+    (version "1.3")
+    (source (origin
+              ;; The source distributed on PyPI is outdated.
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/pyga/parsley")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0550rw65ygqzbjc8a66hs355pzbx727kbn20dssdb6ls846gw2qs"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      ;; XXX: Check why these 3 tests fail.
+      #:test-flags #~(list "-k"
+                           (string-append "not test_sending_empty_netstring"
+                            " and not test_sending_one_netstring"
+                            " and not test_sending_two_netstrings"))))
+    (native-inputs (list python-pytest python-twisted))
+    (home-page "https://launchpad.net/parsley")
+    (synopsis "Parsing and pattern matching Python library")
+    (description
+     "Parsley is an implementation of OMeta, an object-oriented pattern-matching
+language developed by Alessandro Warth at http://tinlizzie.org/ometa/")
+    (license license:expat)))
+
 (define-public python-polib
   (package
     (name "python-polib")
-- 
2.40.1





  parent reply	other threads:[~2023-05-30 20:01 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-30 19:39 [bug#63806] [PATCH 00/18]: gnu: Add JWST (James Webb Space Telescope) Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 01/18] gnu: Add python-pysynshot Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 02/18] gnu: Add python-rad Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 03/18] gnu: Add python-roman-datamodels Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 04/18] gnu: Add python-stsci-image Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 05/18] gnu: Add python-stsci-imagestats Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 06/18] gnu: Add python-stsci-stimage Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 07/18] gnu: Add python-tweakwcs Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 08/18] gnu: Add python-synphot Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 09/18] gnu: Add python-stsynphot Sharlatan Hellseher
2023-05-30 19:58 ` Sharlatan Hellseher [this message]
2023-05-30 19:58 ` [bug#63806] [PATCH 11/18] gnu: Add python-crds Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 12/18] gnu: Add python-stdatamodels Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 13/18] gnu: Add python-stpipe Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 14/18] gnu: Add python-bayesicfitting Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 15/18] gnu: Add python-wiimatch Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 16/18] gnu: Add python-drizzle Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 17/18] gnu: Add python-stcal Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 18/18] gnu: Add python-jwst Sharlatan Hellseher
2023-06-09  8:33 ` [bug#63806] Sharlatan Hellseher
2023-06-14 11:59 ` bug#63806: [PATCH 00/18]: gnu: Add JWST (James Webb Space Telescope) Efraim Flashner

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=64c71532912225594039185964bbc7a564a6cf2d.1685475211.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=63806@debbugs.gnu.org \
    --cc=jgart@dismail.de \
    /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.