summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 535593ce3ba..cab0112f442 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14636,3 +14636,21 @@ RFC 8265 and RFC 8266.")
14636@url{https://www.wikidata.org/, Wikidata}.") 14636@url{https://www.wikidata.org/, Wikidata}.")
14637 (properties '((upstream-name . "Wikidata"))) 14637 (properties '((upstream-name . "Wikidata")))
14638 (license license:gpl3+))) 14638 (license license:gpl3+)))
14639
14640(define-public python-attr
14641 (package
14642 (name "python-attr")
14643 (version "0.3.1")
14644 (source
14645 (origin
14646 (method url-fetch)
14647 (uri (pypi-uri "attr" version))
14648 (sha256
14649 (base32
14650 "0pbpskvxp5hzdvcaf766ljwpckshir8sf7z6jqji6zyib20594ch"))))
14651 (build-system python-build-system)
14652 (home-page "https://github.com/denis-ryzhkov/attr")
14653 (synopsis "Decorator for attributes of target function or class")
14654 (description "Simple decorator to set attributes of target function or
14655class in a @acronym{DRY, Don't Repeat Yourself} way.")
14656 (license license:expat)))