gnu: python-pre-commit: Move deprecated variable next to replacement.
This fixes a module import dependency cycle, which was introduced in
831baaf81e
("gnu: python-pre-commit: Replace
with pre-commit."). The rule of thumb to avoid these is that the deprecated
package should live next to the replacement package (in the same module).
* gnu/packages/python-xyz.scm (python-pre-commit): Move to...
* gnu/packages/version-control.scm (python-pre-commit): ... here.
This commit is contained in:
parent
cb2e7efa6c
commit
5174820753
2 changed files with 3 additions and 3 deletions
|
@ -24391,9 +24391,6 @@ (define-public python-retrying
|
|||
@end itemize")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-pre-commit
|
||||
(deprecated-package "python-pre-commit" pre-commit))
|
||||
|
||||
(define-public python-precis-i18n
|
||||
(package
|
||||
(name "python-precis-i18n")
|
||||
|
|
|
@ -1759,6 +1759,9 @@ (define-public pre-commit
|
|||
execution of any hook written in any language before every commit.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pre-commit
|
||||
(deprecated-package "python-pre-commit" pre-commit))
|
||||
|
||||
(define-public mercurial
|
||||
(package
|
||||
(name "mercurial")
|
||||
|
|
Loading…
Reference in a new issue