gnu: Add python-norns.

* gnu/packages/python-xyz.scm (python-norns): New variable.
This commit is contained in:
Ricardo Wurmus 2023-05-05 15:38:13 +02:00
parent fcd397e4a6
commit adbd97cbb0
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -7044,6 +7044,23 @@ (define-public python-node-semver
semantic version parser for Node.js.")
(license license:expat)))
(define-public python-norns
(package
(name "python-norns")
(version "0.1.6")
(source (origin
(method url-fetch)
(uri (pypi-uri "norns" version))
(sha256
(base32
"1r1lcq59v6l75wkbp7mypanr69a6fv6m58v6dw3v6b4vwz5nqg0z"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-appdirs python-nose python-pyyaml))
(home-page "https://github.com/simonvh/norns")
(synopsis "Simple YAML-based config module")
(description "This package provides a simple YAML-based config module.")
(license license:expat)))
(define-public python-patch-ng
(package
(name "python-patch-ng")