diff options
author | Christopher Baines <mail@cbaines.net> | 2017-12-17 15:21:31 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-24 15:11:35 +0000 |
commit | 301457c11c393761d93875cf0ad6d9959cc24416 (patch) | |
tree | fc2cbac23065f1aa9d94a567fbcb71930d2c4f0e | |
parent | fc5fe9fdd63e3ea5d248857ad381c4b79f26e43e (diff) | |
download | guix-301457c11c393761d93875cf0ad6d9959cc24416.tar guix-301457c11c393761d93875cf0ad6d9959cc24416.tar.gz |
gnu: Add python-cymem.
* gnu/packages/python.scm (python-cymem): New variable.
-rw-r--r-- | gnu/packages/python.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 3efdad30fd..bec1fc47c9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2859,6 +2859,28 @@ writing C extensions for Python as easy as Python itself.") (define-public python2-cytoolz (package-with-python2 python-cytoolz)) +(define-public python-cymem + (package + (name "python-cymem") + (version "1.31.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "cymem" version)) + (sha256 + (base32 + "1wcx1m7wdmg3kx16sbbr6dys32cx64f11n3lar0dfx04v989nvgh")))) + (build-system python-build-system) + (home-page "https://github.com/spacy-io/cymem") + (synopsis + "Manage calls to calloc/free through Cython") + (description + "Manage calls to calloc/free through Cython") + (license license:expat))) + +(define-public python2-cymem + (package-with-python2 python-cymem)) + ;; The RPython toolchain currently does not support Python 3. (define-public python2-rpython (package |