mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: python-immutables: Remove python-mypy native-input.
* gnu/packages/python-xyz.scm (python-immutables): [origin]: Use git-fetch to use upstream test-data directory. [native-inputs]: Remove python-mypy. [arguments]<#:phases>: Add phase to remove python-mypy native-input. Change-Id: I783413ec475e5a4084ae84ca2afcd5244a396c23 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
1798c0c65a
commit
6710531bbc
1 changed files with 13 additions and 4 deletions
|
|
@ -17084,13 +17084,22 @@ native modules.")
|
|||
(version "0.21")
|
||||
(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 "0jpw9nr2mbzqykigjhqa3a095bx7krwsnmjcxcpj944p8kqglpxm"))))
|
||||
(base32 "1p5g20y7di5xglk6yyhb010vdmz73q9fsxpq0cm2gksp8mj856y1"))))
|
||||
(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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue