~ruther/guix-local

ce7911ddae5d30ba73c8c9552b7d4e71268e5db3 — Marius Bakke 9 years ago 1eaaea4
gnu: Add python-faker.

* gnu/packages/patches/python-fake-factory-fix-build-32bit.patch: Adjust
paths. Also rename to ...
* gnu/packages/patches/python-faker-fix-build-32bit.patch: ... this.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/python.scm (python-faker, python2-faker): New variables.
(python-fake-factory)[properties]: Superseded by PYTHON-FAKER.
(python2-fake-factory)[properties]: Superseded by PYTHON2-FAKER.
(python-orator, python2-orator)[propagated-inputs]: Replace
PYTHON-FAKE-FACTORY with PYTHON-FAKER.
M gnu/local.mk => gnu/local.mk +1 -1
@@ 862,7 862,7 @@ dist_patch_DATA =						\
  %D%/packages/patches/python2-rdflib-drop-sparqlwrapper.patch	\
  %D%/packages/patches/python-statsmodels-fix-tests.patch	\
  %D%/packages/patches/python-configobj-setuptools.patch	\
  %D%/packages/patches/python-fake-factory-fix-build-32bit.patch	\
  %D%/packages/patches/python-faker-fix-build-32bit.patch	\
  %D%/packages/patches/python-paste-remove-website-test.patch	\
  %D%/packages/patches/python-paste-remove-timing-test.patch	\
  %D%/packages/patches/python-pygit2-disable-network-tests.patch	\

R gnu/packages/patches/python-fake-factory-fix-build-32bit.patch => gnu/packages/patches/python-faker-fix-build-32bit.patch +3 -3
@@ 2,10 2,10 @@ These tests fail on 32-bit due to an overflow.

Upstream bug URL: https://github.com/joke2k/faker/issues/408

diff --git a/faker/tests/__init__.py b/faker/tests/__init__.py
diff --git a/tests/__init__.py b/tests/__init__.py
index 6026772..58b6b83 100644
--- a/faker/tests/__init__.py
+++ b/faker/tests/__init__.py
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -384,7 +384,6 @@ class FactoryTestCase(unittest.TestCase):
         provider = Provider
         # test century

M gnu/packages/python.scm => gnu/packages/python.scm +53 -2
@@ 11434,6 11434,55 @@ parsing UK postcodes.")
(define-public python2-ukpostcodeparser
  (package-with-python2 python-ukpostcodeparser))

(define-public python-faker
  (package
  (name "python-faker")
  (version "0.7.9")
  (source (origin
            (method url-fetch)
            (uri (pypi-uri "Faker" version))
            (sha256
             (base32
              "1fh2p2yz0fsdr4fqwxgddwbvfb6qn6vp8yx0qwqzra27yq5d1wsm"))
            (patches
             (search-patches "python-faker-fix-build-32bit.patch"))
            (modules '((guix build utils)))
            (snippet
             '(begin
                (for-each delete-file (find-files "." "\\.pyc$"))
                #t))))
  (build-system python-build-system)
  (arguments
   '(#:phases
     (modify-phases %standard-phases
       (replace 'check
         (lambda _
           (zero? (system* "python" "-m" "unittest" "-v" "tests")))))))
  (native-inputs
   `(;; For testing
     ("python-email-validator" ,python-email-validator)
     ("python-mock" ,python-mock)
     ("python-ukpostcodeparser" ,python-ukpostcodeparser)))
  (propagated-inputs
   `(("python-dateutil" ,python-dateutil)
     ("python-six" ,python-six)))
  (home-page "https://github.com/joke2k/faker")
  (synopsis "Python package that generates fake data")
  (description
   "Faker is a Python package that generates fake data such as names,
addresses, and phone numbers.")
  (license license:expat)
  (properties `((python2-variant . ,(delay python2-faker))))))

(define-public python2-faker
  (let ((base (package-with-python2 (strip-python2-variant
                                     python-faker))))
    (package
      (inherit base)
      (propagated-inputs
       `(("python2-ipaddress" ,python2-ipaddress)
         ,@(package-propagated-inputs base))))))

(define-public python-fake-factory
  (package
  (name "python-fake-factory")


@@ 11468,13 11517,15 @@ parsing UK postcodes.")
   "Faker is a Python package that generates fake data such as names,
addresses, and phone numbers.")
  (license license:expat)
  (properties `((python2-variant . ,(delay python2-fake-factory))))))
  (properties `((python2-variant . ,(delay python2-fake-factory))
                (superseded . ,python-faker)))))

(define-public python2-fake-factory
  (let ((base (package-with-python2 (strip-python2-variant
                                     python-fake-factory))))
    (package
      (inherit base)
      (properties `((superseded . ,python2-faker)))
      (propagated-inputs
       `(("python2-ipaddress" ,python2-ipaddress)
         ,@(package-propagated-inputs base))))))


@@ 11541,7 11592,7 @@ mocks, stubs and fakes.")
     `(("python-arrow" ,python-arrow)
       ("python-blinker" ,python-blinker)
       ("python-cleo" ,python-cleo)
       ("python-fake-factory" ,python-fake-factory)
       ("python-faker" ,python-faker)
       ("python-inflection" ,python-inflection)
       ("python-lazy-object-proxy" ,python-lazy-object-proxy)
       ("python-pyaml" ,python-pyaml)