mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-rope: Update to 0.19.0 and remove python2-rope.
* gnu/packages/python-xyz.scm (python-rope): Update to 0.19.0. [source]: Fix indentation. [arguments]: Remove. [native-inputs]: Remove. [license]: Correct license. (python2-rope): Delete variable.
This commit is contained in:
parent
1d94000d87
commit
3d0fd83f24
1 changed files with 8 additions and 22 deletions
|
@ -14265,39 +14265,25 @@ respectively.")
|
||||||
Python. It generates C++ code and a Makefile."))
|
Python. It generates C++ code and a Makefile."))
|
||||||
(license (list license:gpl3 license:bsd-3 license:expat))))
|
(license (list license:gpl3 license:bsd-3 license:expat))))
|
||||||
|
|
||||||
(define-public python2-rope
|
(define-public python-rope
|
||||||
(package
|
(package
|
||||||
(name "python2-rope")
|
(name "python-rope")
|
||||||
(version "0.11.0")
|
(version "0.19.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "rope" version))
|
(uri (pypi-uri "rope" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1cppm0pa9aqgsbkq130lskrzmrvjs5vpiavjjbhpz2fdw52w8251"))))
|
"1nlhkmsfvn2p1msrmwqnypnvr993alzawnpc1605q7rfad3xgrk4"))))
|
||||||
(arguments
|
|
||||||
;; Rope has only partial python3 support, see `python-rope'
|
|
||||||
`(#:python ,python-2))
|
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
|
||||||
`(("python2-unittest2" ,python2-unittest2)))
|
|
||||||
(home-page "https://github.com/python-rope/rope")
|
(home-page "https://github.com/python-rope/rope")
|
||||||
(synopsis "Refactoring library for Python")
|
(synopsis "Refactoring library for Python")
|
||||||
(description "Rope is a refactoring library for Python. It facilitates
|
(description "Rope is a refactoring library for Python. It facilitates
|
||||||
the renaming, moving and extracting of attributes, functions, modules, fields
|
the renaming, moving and extracting of attributes, functions, modules, fields
|
||||||
and parameters in Python 2 source code. These refactorings can also be applied
|
and parameters in Python 2 source code. These refactorings can also be applied
|
||||||
to occurrences in strings and comments.")
|
to occurrences in strings and comments.")
|
||||||
(license license:gpl2)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
(define-public python-rope
|
|
||||||
(package/inherit python2-rope
|
|
||||||
(name "python-rope")
|
|
||||||
(arguments `(#:python ,python-wrapper
|
|
||||||
;; XXX: Only partial python3 support, results in some failing
|
|
||||||
;; tests: <https://github.com/python-rope/rope/issues/247>.
|
|
||||||
#:tests? #f))
|
|
||||||
(properties `((python2-variant . ,(delay python2-rope))))))
|
|
||||||
|
|
||||||
(define-public python-py3status
|
(define-public python-py3status
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue