Archived
1
0
Fork 0

gnu: python-plotly: Fix version detection.

* gnu/packages/graph.scm (python-plotly): Apply new package style.
[arguments]: Add new fix-version phase.
[arguments]{phases}: chdir phase, remove trailing #f from lambda.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Sharlatan Hellseher 2023-03-08 23:26:36 +00:00 committed by Nicolas Goaziou
parent 0689a84271
commit 1c0056876c
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -230,16 +230,22 @@ lines.")
"0kc9v5ampq2paw6sls6zdchvqvis7b1z8xhdvlhz5xxdr1vj5xnn")))) "0kc9v5ampq2paw6sls6zdchvqvis7b1z8xhdvlhz5xxdr1vj5xnn"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases (list
(modify-phases %standard-phases #:phases
#~(modify-phases %standard-phases
(add-before 'build 'skip-npm (add-before 'build 'skip-npm
;; npm is not packaged so build without it ;; npm is not packaged so build without it
(lambda _ (lambda _
(setenv "SKIP_NPM" "T"))) (setenv "SKIP_NPM" "T")))
(add-after 'unpack 'chdir (add-after 'unpack 'fix-version
;; Versioneer is useless when there is no git metadata.
(lambda _ (lambda _
(chdir "packages/python/plotly") (substitute* "packages/python/plotly/setup.py"
#t)) (("version=versioneer.get_version\\(),")
(format #f "version=~s," #$version)))))
(add-after 'fix-version 'chdir
(lambda _
(chdir "packages/python/plotly")))
(replace 'check (replace 'check
(lambda* (#:key tests? #:allow-other-keys) (lambda* (#:key tests? #:allow-other-keys)
(when tests? (when tests?