gnu: silkaj: Update to 0.6.0.
* gnu/packages/finance.scm (silkaj): Update to 0.6.0. [arguments]: Remove #:phases since upstream improved install process.
This commit is contained in:
parent
47f92fbb10
commit
e627052f3c
|
@ -875,7 +875,7 @@ main features are:
|
||||||
(define-public silkaj
|
(define-public silkaj
|
||||||
(package
|
(package
|
||||||
(name "silkaj")
|
(name "silkaj")
|
||||||
(version "0.5.0")
|
(version "0.6.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -885,30 +885,10 @@ main features are:
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0xy25lpgz04nxikjvxlnlckrc9xmsxyiz2qm0bsiid8cnbdqcn12"))))
|
"02n028rz1pshgh7w0af3b291r8lwvhzskm1q98d991gr8rscvad2"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no test
|
`(#:tests? #f)) ;no test
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
;; The program is just a bunch of Python files in "src/" directory.
|
|
||||||
;; Many phases are useless. However, `python-build-system' correctly
|
|
||||||
;; sets PYTHONPATH and patches Python scripts.
|
|
||||||
(delete 'configure)
|
|
||||||
(delete 'build)
|
|
||||||
(replace 'install
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
|
||||||
(share (string-append out "/share/silkaj"))
|
|
||||||
(executable (string-append share "/silkaj.py"))
|
|
||||||
(bin (string-append out "/bin")))
|
|
||||||
;; Install data.
|
|
||||||
(copy-recursively "src" share)
|
|
||||||
;; Install executable.
|
|
||||||
(mkdir-p bin)
|
|
||||||
(with-directory-excursion bin
|
|
||||||
(symlink executable "silkaj")))
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("python-commandlines" ,python-commandlines)
|
`(("python-commandlines" ,python-commandlines)
|
||||||
("python-ipaddress" ,python-ipaddress)
|
("python-ipaddress" ,python-ipaddress)
|
||||||
|
|
Loading…
Reference in New Issue