~ruther/guix-local

751b938bdfda79b3f0f35c36b326bba4fff95191 — Nicolas Graves 6 months ago ae602f4
gnu: python-simpleeval: Switch to pyproject.

* gnu/packages/python-xyz.scm (python-simpleeval):
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools.

Change-Id: I07beeeed289ba7f2965df21c148253d5e5562c3f
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 8 insertions(+), 4 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +8 -4
@@ 19200,11 19200,15 @@ Features:
    (version "0.9.12")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "simpleeval" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/danthedeckie/simpleeval")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0diysdzvx865yy2rjfah75ha2qfxaxz7r108kp7j2kkd903ya2ry"))))
    (build-system python-build-system)
        (base32 "0khgl729q5133fgc00d550f4r77707rkkn7r56az4v8bvx0q8xp4"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-pytest python-setuptools))
    (home-page "https://github.com/danthedeckie/simpleeval")
    (synopsis "Simple, safe single expression evaluator library")
    (description