@@ -356,3 +356,20 @@ (define-public ratpoints
a given height bound on a hyperelliptic curve in a very efficient way,
by using an optimized quadratic sieve algorithm.")
(license license:gpl2+)))
+
+(define-public python-memory-allocator
+ (package
+ (name "python-memory-allocator")
+ (version "0.1.3")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "memory_allocator" version))
+ (sha256
+ (base32
+ "0qiijpv8zr7c5rjy64i4q3rb8qhn6v4yms5mza4p86y0w4m5r00k"))))
+ (build-system python-build-system)
+ (propagated-inputs (list python-cython))
+ (home-page "https://github.com/sagemath/memory_allocator")
+ (synopsis "An extension class to allocate memory easily with cython")
+ (description "An extension class to allocate memory easily with cython")
+ (license license:gpl3)))