From 3d088c0cbeee76c59dc140db16119a5e3f837b08 Mon Sep 17 00:00:00 2001 From: "Artyom V. Poptsov" Date: Sun, 22 May 2022 01:14:26 +0300 Subject: [PATCH] gnu: Add python-blis * gnu/packages/python-xyz.scm (python-blis): New variable. --- gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 5f9ce4fdfe..934dfd2959 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29435,3 +29435,39 @@ Information about these scales can be @url{https://en.wikipedia.org/wiki/List_of_musical_scales_and_modes, found on Wikipedia}.") (license license:expat))) + +(define-public python-blis + (package + (name "python-blis") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/explosion/cython-blis") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1p4y4mf8046kv2syf2s0v6mf4s000anr1ws7w3fny852gpp6czk4")))) + (build-system python-build-system) + (native-inputs (list python-numpy-next + python-pytest + python-cython + blis + python-hypothesis)) + (arguments + (list #:tests? #t + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch + (lambda _ + (substitute* "./blis/benchmark.py" + (("blas_ilp64_opt_info") + "blas_opt_info"))))))) + (home-page "https://github.com/explosion/cython-blis") + (synopsis "Fast matrix-multiplication Python library") + (description + "This package provides the @url{https://github.com/flame/blis, +Blis linear algebra} routines as a self-contained Python C-extension.") + (license license:bsd-3))) -- 2.25.1