~ruther/guix-local

35d56b7b607f6de615d5e13eb05273c649ee4543 — Marius Bakke 9 years ago bfba083
gnu: python-sqlalchemy-utils: Disable tests.

* gnu/packages/python.scm (python-sqlalchemy-utils,
  python2-sqlalchemy-utils)[arguments]: Set #:tests? #f.
  [native-inputs]: Add python-dateutil-2, python-flexmock, python-pcycopg2 and
  python-pytz.
1 files changed, 12 insertions(+), 1 deletions(-)

M gnu/packages/python.scm
M gnu/packages/python.scm => gnu/packages/python.scm +12 -1
@@ 3988,11 3988,22 @@ both of which are installed automatically if you install this library.")
         (base32
          "1wghyvk73cmq3iqyg3fczw128fv2pan2v76m0xg1bw05h8fhvnk3"))))
    (build-system python-build-system)
    (arguments
     '(#:tests? #f)) ; FIXME: Many tests require a running database server.
       ;; #:phases
       ;; (modify-phases %standard-phases
       ;;   (replace 'check
       ;;     (lambda _
       ;;       (zero? (system* "py.test" "sqlalchemy_utils" "tests")))))
    (propagated-inputs
     `(("python-six" ,python-six)
       ("python-sqlalchemy" ,python-sqlalchemy)))
    (native-inputs
     `(("python-pytest" ,python-pytest)))
     `(("python-dateutil" ,python-dateutil-2)
       ("python-flexmock" ,python-flexmock)
       ("python-psycopg2" ,python-psycopg2)
       ("python-pytest" ,python-pytest)
       ("python-pytz" ,python-pytz)))
    (home-page "https://github.com/kvesteri/sqlalchemy-utils")
    (synopsis "Various utility functions for SQLAlchemy")
    (description