Hi, i started building package definition: ~~~ (define-module (odoo odoo) #:use-module ((guix licenses) #:select (lgpl3)) #:use-module ((guix licenses) #:select (lgpl3) #:prefix license:)
#:use-module (gnu packages) #:use-module (gnu packages python) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix utils) #:use-module (guix build-system python)) (define-public odoo (package (name "odoo") (version "9.0c") (source (origin (method url-fetch) (uri (string-append "http://nightly.odoo.com/9.0/nightly/src/odoo_" version ".20160610.tar.gz")) (sha256 (base32 "171gnax8syrz60iwi3k99di60x24z4f6c3s3wszb5xwgkir0ck7r")))) (build-system python-build-system) (native-inputs `(("python2-setuptools" ,python2-setuptools))) (arguments `(#:python ,python-2 #:tests? #f)) (home-page "http://www.odoo.com") (synopsis "ERP") (description "ERP") (license license:lgpl3)) ) ~~~ when i run **guix build -L$PWD odoo** it's started well but stopp ~~~ creating dist creating 'dist/odoo-9.0rc20160610-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it removing 'build/bdist.linux-x86_64/egg' (and everything under it) Creating /gnu/store/w2abvs6q99xh2qpv77l0r5gsl30wrzpl-odoo-9.0c/lib/python2.7/site-packages/site.py Processing odoo-9.0rc20160610-py2.7.egg creating /gnu/store/w2abvs6q99xh2qpv77l0r5gsl30wrzpl-odoo-9.0c/lib/python2.7/site-packages/odoo-9.0rc20160610-py2.7.egg Extracting odoo-9.0rc20160610-py2.7.egg to /gnu/store/w2abvs6q99xh2qpv77l0r5gsl30wrzpl-odoo-9.0c/lib/python2.7/site-packages Adding odoo 9.0rc20160610 to easy-install.pth file Installing openerp-server script to /gnu/store/w2abvs6q99xh2qpv77l0r5gsl30wrzpl-odoo-9.0c/bin Installing odoo.py script to /gnu/store/w2abvs6q99xh2qpv77l0r5gsl30wrzpl-odoo-9.0c/bin Installed /gnu/store/w2abvs6q99xh2qpv77l0r5gsl30wrzpl-odoo-9.0c/lib/python2.7/site-packages/odoo-9.0rc20160610-py2.7.egg Processing dependencies for odoo==9.0rc20160610 Searching for xlwt Reading https://pypi.python.org/simple/xlwt/ Download error on https://pypi.python.org/simple/xlwt/: [Errno -2] Name or service not known -- Some packages may not be found! Couldn't find index page for 'xlwt' (maybe misspelled?) Scanning index of all packages (this may take a while) Reading https://pypi.python.org/simple/ Download error on https://pypi.python.org/simple/: [Errno -2] Name or service not known -- Some packages may not be found! No local packages or download links found for xlwt error: Could not find suitable distribution for Requirement.parse('xlwt') phase `install' failed after 102.1 seconds builder for `/gnu/store/cs5gl3x9kr6nmw441yvv68aqwg2yba8b-odoo-9.0c.drv' failed with exit code 1 @ build-failed /gnu/store/cs5gl3x9kr6nmw441yvv68aqwg2yba8b-odoo-9.0c.drv - 1 builder for `/gnu/store/cs5gl3x9kr6nmw441yvv68aqwg2yba8b-odoo-9.0c.drv' failed with exit code 1 guix build: error: build failed: build of `/gnu/store/cs5gl3x9kr6nmw441yvv68aqwg2yba8b-odoo-9.0c.drv' failed ~~~ but if i do manually ~~~ $ guix environment -L$PWD odoo $ cd odoo-src $ python setup.py build $ python setup.py check ~~~ everything works, and download all requirements well *xlwt/simple* thanks any help