all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Vinicius Monego <monego@posteo.net>
To: 50018@debbugs.gnu.org
Cc: Vinicius Monego <monego@posteo.net>
Subject: [bug#50018] [PATCH 05/19] gnu: python-aws-sam-translator: Change source for tests.
Date: Wed, 11 Aug 2021 23:44:57 +0000	[thread overview]
Message-ID: <20210811234511.32450-5-monego@posteo.net> (raw)
In-Reply-To: <20210811234511.32450-1-monego@posteo.net>

* gnu/packages/python-web.scm (python-aws-sam-translator)[source]: Fetch from
GitHub. Make some cosmetic changes.
[arguments]: Change explanation on why tests are disabled. Make some cosmetic
changes.
[native-inputs]: Add python-black, python-click, python-coverage,
python-dateparser, python-docopt, python-flake8, python-mock,
python-parameterized, python-pathlib2, python-pylint, python-pytest,
python-pytest-cov, python-pyyaml, python-requests.
---
 gnu/packages/python-web.scm | 57 +++++++++++++++++++++++++------------
 1 file changed, 39 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 787300e1f8..041fb2d7b7 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -364,26 +364,47 @@ WSGI.  This package includes libraries for implementing ASGI servers.")
   (package
     (name "python-aws-sam-translator")
     (version "1.38.0")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "aws-sam-translator" version))
-              (sha256
-               (base32
-                "1djwlsjpbh13m4biglimrm9lq7hmla0k29giay7k3cjsrylxvjhf"))))
+    (source
+     (origin
+       ;; PyPI tarball does not include tests.
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/aws/serverless-application-model")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0nn9jfqz13kzmxm0r9vy24p8sqxv3mrm5d3lx7ah6rc581q8nv1k"))))
     (build-system python-build-system)
     (arguments
-     `(;; XXX: Tests are not distributed with the PyPI archive, and would
-       ;; introduce a circular dependency on python-cfn-lint.
-       #:tests? #f
-       #:phases (modify-phases %standard-phases
-                  (add-after 'unpack 'loosen-requirements
-                    (lambda _
-                      ;; The package needlessly specifies exact versions
-                      ;; of dependencies, when it works fine with others.
-                      (substitute* "requirements/base.txt"
-                        (("(.*)(~=[0-9\\.]+)" all package version)
-                         package))
-                      #t)))))
+     ;; 25 test failures divided in the following two errors:
+     ;; 'botocore.exceptions.NoRegionError: You must specify a region.'
+     ;; AttributeError: 'TestDeploymentPreferenceCollection' object has
+     ;; no attribute 'function_logical_id'.
+     `(#:tests? #f
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'loosen-requirements
+           (lambda _
+             ;; The package needlessly specifies exact versions
+             ;; of dependencies, when it works fine with others.
+             (substitute* "requirements/base.txt"
+               (("(.*)(~=[0-9\\.]+)" all package version)
+                package)))))))
+    (native-inputs
+     `(("python-black" ,python-black)
+       ("python-click" ,python-click)
+       ("python-coverage" ,python-coverage)
+       ("python-dateparser" ,python-dateparser)
+       ("python-docopt" ,python-docopt)
+       ("python-flake8" ,python-flake8)
+       ("python-mock" ,python-mock)
+       ("python-parameterized" ,python-parameterized)
+       ("python-pathlib2" ,python-pathlib2)
+       ("python-pylint" ,python-pylint)
+       ("python-pytest" ,python-pytest)
+       ("python-pytest-cov" ,python-pytest-cov)
+       ("python-pyyaml" ,python-pyyaml)
+       ("python-requests" ,python-requests)))
     (propagated-inputs
      `(("python-boto3" ,python-boto3)
        ("python-jsonschema" ,python-jsonschema)
-- 
2.30.2





  parent reply	other threads:[~2021-08-11 23:47 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-11 23:43 [bug#50018] [PATCH 00/19] Update Celery to version 5 Vinicius Monego
2021-08-11 23:44 ` [bug#50018] [PATCH 01/19] gnu: Add python-click-repl Vinicius Monego
2021-08-11 23:44   ` [bug#50018] [PATCH 02/19] gnu: Add python-click-didyoumean Vinicius Monego
2021-08-11 23:44   ` [bug#50018] [PATCH 03/19] gnu: Add python-pytest-subtests Vinicius Monego
2021-08-11 23:44   ` [bug#50018] [PATCH 04/19] gnu: python-aws-sam-translator: Update to 1.38.0 Vinicius Monego
2021-08-11 23:44   ` Vinicius Monego [this message]
2021-08-11 23:44   ` [bug#50018] [PATCH 06/19] gnu: python-cfn-lint: Update to 0.53.0 Vinicius Monego
2021-08-11 23:44   ` [bug#50018] [PATCH 07/19] gnu: python-cfn-lint: Respect #:tests? Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 08/19] gnu: python-moto: Update to 2.2.2 Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 09/19] gnu: python-moto: Respect #:tests? Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 10/19] gnu: python-vine: Update to 5.0.0 Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 11/19] gnu: Add python-pytest-rerunfailures Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 12/19] gnu: python-amqp: Update to 5.0.6 Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 13/19] gnu: python-kombu: Update to 5.1.0 Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 14/19] gnu: Add python-pytest-celery Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 15/19] gnu: python-celery: Update to 5.1.2 Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 16/19] gnu: python-celery: Enable tests Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 17/19] gnu: Remove python2-celery Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 18/19] gnu: Remove python2-kombu Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 19/19] gnu: Remove python2-amqp Vinicius Monego
2021-08-13 22:45 ` [bug#50018] [PATCH v2 16/19] gnu: python-celery: Enable tests Vinicius Monego
2021-08-13 22:45   ` [bug#50018] [PATCH v2 17/19] gnu: Remove python2-celery Vinicius Monego
2021-08-13 22:45   ` [bug#50018] [PATCH v2 18/19] gnu: Remove python2-kombu Vinicius Monego
2021-08-13 22:45   ` [bug#50018] [PATCH v2 19/19] gnu: Remove python2-amqp Vinicius Monego
2021-09-16 16:20 ` [bug#50018] [PATCH v3 00/21] Update Celery to version 5 Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 01/21] gnu: Add python-click-repl Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 02/21] gnu: Add python-click-didyoumean Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 03/21] gnu: Add python-pytest-subtests Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 04/21] gnu: python-cfn-lint: Respect #:tests? Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 05/21] gnu: python-botocore: Update to 1.21.42 Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 06/21] gnu: python-s3transfer: Update to 0.5.0 Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 07/21] gnu: python-boto3: Update to 1.18.42 Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 08/21] gnu: awscli: Update to 1.20.42 Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 09/21] gnu: python-aws-sam-translator: Change source for tests Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 10/21] gnu: python-moto: Update to 2.2.7 Vinicius Monego
2021-09-26 17:08     ` Maxime Devos
2021-09-16 16:21   ` [bug#50018] [PATCH v3 11/21] gnu: python-moto: Respect #:tests? Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 12/21] gnu: python-vine: Update to 5.0.0 Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 13/21] gnu: Add python-pytest-rerunfailures Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 14/21] gnu: python-amqp: Update to 5.0.6 Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 15/21] gnu: python-kombu: Update to 5.1.0 Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 16/21] gnu: Add python-pytest-celery Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 17/21] gnu: python-celery: Update to 5.1.2 Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 18/21] gnu: python-celery: Enable tests Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 19/21] gnu: Remove python2-celery Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 20/21] gnu: Remove python2-kombu Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 21/21] gnu: Remove python2-amqp Vinicius Monego
2021-10-25 20:00 ` [bug#50018] [PATCH v3 10/21] gnu: python-moto: Update to 2.2.7 Vinicius Monego
2021-12-19  0:29 ` [bug#50018] [PATCH v4 01/12] gnu: Add python-click-repl Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 02/12] gnu: Add python-click-didyoumean Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 03/12] gnu: Add python-pytest-subtests Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 04/12] gnu: Add python-pytest-rerunfailures Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 05/12] gnu: Add python-pytest-celery Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 06/12] gnu: python-billiard: Update to 3.6.4.0 Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 07/12] gnu: python-celery: Update to 5 Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 08/12] gnu: python-celery: Enable tests Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 09/12] gnu: Remove python2-celery Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 10/12] gnu: Remove python2-kombu Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 11/12] gnu: Remove python2-amqp Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 12/12] gnu: Remove python2-billiard Vinicius Monego
2021-12-26 23:10 ` bug#50018: [PATCH 00/19] Update Celery to version 5 Nicolas Goaziou
2021-12-26 23:39   ` [bug#50018] " Leo Famulari

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=20210811234511.32450-5-monego@posteo.net \
    --to=monego@posteo.net \
    --cc=50018@debbugs.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.