diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-12-02 01:03:56 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-12-02 01:18:08 +0100 |
commit | 5d7c66a5197b77eefb4c1d4c5d672e81d5a9ea4e (patch) | |
tree | cdbd22556d574061eaaf51dd6494b2d3558a634e /gnu | |
parent | 62c2cef05c9758e09411d6787cf135ee85d303d9 (diff) | |
download | guix-5d7c66a5197b77eefb4c1d4c5d672e81d5a9ea4e.tar.gz guix-5d7c66a5197b77eefb4c1d4c5d672e81d5a9ea4e.zip |
gnu: Add python-attr.
* gnu/packages/python.scm (python-attr): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 535593ce3b..cab0112f44 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14636,3 +14636,21 @@ RFC 8265 and RFC 8266.") @url{https://www.wikidata.org/, Wikidata}.") (properties '((upstream-name . "Wikidata"))) (license license:gpl3+))) + +(define-public python-attr + (package + (name "python-attr") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "attr" version)) + (sha256 + (base32 + "0pbpskvxp5hzdvcaf766ljwpckshir8sf7z6jqji6zyib20594ch")))) + (build-system python-build-system) + (home-page "https://github.com/denis-ryzhkov/attr") + (synopsis "Decorator for attributes of target function or class") + (description "Simple decorator to set attributes of target function or +class in a @acronym{DRY, Don't Repeat Yourself} way.") + (license license:expat))) |