[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70858] [PATCH python-team v2 19/32] gnu: python-immutables: Remove
From: |
Nicolas Graves |
Subject: |
[bug#70858] [PATCH python-team v2 19/32] gnu: python-immutables: Remove python-mypy native-input. |
Date: |
Sat, 1 Jun 2024 17:36:51 +0200 |
* gnu/packages/python-xyz.scm (python-immutables):
[origin]: Use git-fetch to use upstream test-data directory.
[build-system]: Move to pyrpoject-build-system.
[native-inputs]: Remove python-mypy.
[arguments]<#:phases>: Add phase to remove python-mypy native-input.
Change-Id: Ie67f634ffecbc3711f354e915b2fab54a1639925
---
gnu/packages/python-xyz.scm | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 963747bb06a..180158e3b64 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15824,13 +15824,22 @@ (define-public python-immutables
(version "0.18")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "immutables" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/MagicStack/immutables")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1x4cinh0xbl6p6p2yfm2s07mxxy3lf0zzai9gqpydk4482bwfdjk"))))
+ (base32 "1xjbkgls0dqrvpg4yzkdzz6aayizxcv5chjc5gyynk196wyshw4m"))))
(build-system pyproject-build-system)
+ (arguments
+ (list #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-mypy-dependency
+ (lambda _
+ (delete-file "tests/test_mypy.py")
+ (delete-file "tests/conftest.py"))))))
(native-inputs
- (list python-mypy python-pytest python-setuptools python-wheel))
+ (list python-pytest python-setuptools python-wheel))
(home-page "https://github.com/MagicStack/immutables")
(synopsis "High-performance immutable mapping type for Python")
(description
--
2.41.0
- [bug#70858] [PATCH python-team v2 06/32] build-system/pyproject: Remove python-coverage input., (continued)
- [bug#70858] [PATCH python-team v2 06/32] build-system/pyproject: Remove python-coverage input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 10/32] gnu: python-openid: Remove python-coverage native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 11/32] build-system/pyproject: Remove python-coveralls native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 09/32] gnu: python-aiosqlite: Remove python-coverage native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 08/32] gnu: u-boot-tools: Remove python-coverage native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 16/32] build-system/pyproject: Remove python-codecov native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 12/32] build-system/pyproject: Remove python-pycodestyle native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 13/32] gnu: python-versioneer: Remove python-pycodestyle native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 14/32] gnu: python-versioneer: Remove python-pyflakes native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 17/32] build-system/pyproject: Remove python-tox native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 19/32] gnu: python-immutables: Remove python-mypy native-input.,
Nicolas Graves <=
- [bug#70858] [PATCH python-team v2 18/32] build-system/pyproject: Remove python-mypy native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 07/32] gnu: python-cram: Remove python-coverage native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 15/32] gnu: python-re-assert: Remove python-covdefaults native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 20/32] build-system/pyproject: Remove python-isort native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 23/32] gnu: python-tinycss2: Remove python-pytest-cov native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 25/32] gnu: python-dateutil: Remove python-pytest-cov native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 26/32] build-system/pyproject: Remove python-pytest-isort native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 21/32] build-system/pyproject: Remove python-twine native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 24/32] gnu: python-django-contact-form: Remove python-pytest-cov native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 27/32] build-system/pyproject: Remove python-pytest-black native-input., Nicolas Graves, 2024/06/01