diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2024-01-04 00:03:40 -0500 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2024-01-04 00:03:40 -0500 |
commit | ef4e4c9a2ccc1678182fa6e4409fff13c669fd14 (patch) | |
tree | d1f097787a69fa3a7089f26ecfed8b5c267883db /gnu/packages/python-xyz.scm | |
parent | 42c448ee6e13d165807d83e8c48941bead4847c1 (diff) | |
parent | 7b0863f07a113caef26fea13909bd97d250b629e (diff) |
Merge branch 'master' into mesa-updates
Change-Id: I46ca25bea98d25150877421c6d5161752afabb25
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ee689809a3..2afce6c667 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5935,7 +5935,6 @@ flexibility and power of the Python language.") (string-append "-Wl," "-rpath=" python "/lib") "-fno-semantic-interposition" "build/temp/tree/tree.o" - "-Wl,--whole-archive" "-L" (string-append python "/lib") (string-append abseil-cpp "/lib/libabsl_int128.a") (string-append abseil-cpp "/lib/libabsl_raw_hash_set.a") @@ -5943,7 +5942,6 @@ flexibility and power of the Python language.") (string-append abseil-cpp "/lib/libabsl_strings.a") (string-append abseil-cpp "/lib/libabsl_strings_internal.a") (string-append abseil-cpp "/lib/libabsl_throw_delegate.a") - "-Wl,--no-whole-archive" "-o" "build/lib/tree/_tree.so"))))))) (home-page "https://github.com/deepmind/tree") (synopsis "Work with nested data structures in Python") @@ -20288,6 +20286,31 @@ etc.") support.") (license license:bsd-3))) +(define-public python-pymemcache + (package + (name "python-pymemcache") + (version "4.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pymemcache" version)) + (sha256 + (base32 "157z9blr8pjg9x84jph5hm0z2l6yaq6n421jcf1hzqn1pg8rpgr7")))) + (build-system pyproject-build-system) + (arguments + ;; We don't have the zstd module. + (list + #:test-flags + '(list "--ignore=pymemcache/test/test_compression.py"))) + (native-inputs + (list python-faker python-pytest python-pytest-cov)) + (home-page "https://github.com/pinterest/pymemcache") + (synopsis "Comprehensive, fast, pure Python memcached client") + (description + "This package provides a comprehensive, fast, pure Python memcached +client.") + (license license:asl2.0))) + (define-public python-pymodbus (package (name "python-pymodbus") |