me
/
guix
Archived
1
0
Fork 0

gnu: python-graph-tool: Remove input labels.

* gnu/packages/graph.scm (python-graph-tool)[arguments]: Import SITE-PACKAGES
from (guix build python-build-system), and use instead of homegrown procedure.
[native-inputs, inputs]: Remove labels.
master
Marius Bakke 2021-12-17 00:11:44 +01:00
parent 1d505c05bd
commit a133a0288c
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 15 additions and 19 deletions

View File

@ -540,30 +540,26 @@ transformed into common image formats for display or printing.")
"0v58in4rwk9fhjarjw6xfxpx5zz2z13sy3yvd14b5kr0884yw6sz")))) "0v58in4rwk9fhjarjw6xfxpx5zz2z13sy3yvd14b5kr0884yw6sz"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:configure-flags `(#:imported-modules (,@%gnu-build-system-modules
(guix build python-build-system))
#:modules (,@%gnu-build-system-modules
((guix build python-build-system) #:select (site-packages)))
#:configure-flags
(list (string-append "--with-boost=" (list (string-append "--with-boost="
(assoc-ref %build-inputs "boost")) (assoc-ref %build-inputs "boost"))
(string-append "--with-python-module-path=" (string-append "--with-python-module-path="
(assoc-ref %outputs "out") (site-packages %build-inputs %outputs)))))
"/lib/python"
,(version-major+minor
(package-version
(car (assoc-ref
(package-inputs this-package)
"python"))))
"/site-packages/"))))
(native-inputs (native-inputs
`(("ncurses" ,ncurses) (list ncurses pkg-config))
("pkg-config" ,pkg-config)))
(inputs (inputs
`(("boost" ,boost) (list boost
("cairomm" ,cairomm-1.14) cairomm-1.14
("cgal" ,cgal) cgal
("expat" ,expat) expat
("gmp" ,gmp) gmp
("gtk+" ,gtk+) gtk+
("python" ,python-wrapper) python-wrapper
("sparsehash" ,sparsehash))) sparsehash))
(propagated-inputs (propagated-inputs
(list python-matplotlib python-numpy python-pycairo python-scipy)) (list python-matplotlib python-numpy python-pycairo python-scipy))
(synopsis "Manipulate and analyze graphs with Python efficiently") (synopsis "Manipulate and analyze graphs with Python efficiently")