diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-09-22 20:58:30 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-09-22 22:42:46 +0300 |
commit | 7adc698f69eaa5195a9dc956a6466e1ba6858eb2 (patch) | |
tree | e904fe9165e5b2601f9f40e2d702c6b40e3a1d50 /gnu/packages/python.scm | |
parent | 0dbb7ac2df86787cfcb7ae35915a0bfe88a500f9 (diff) | |
download | guix-7adc698f69eaa5195a9dc956a6466e1ba6858eb2.tar guix-7adc698f69eaa5195a9dc956a6466e1ba6858eb2.tar.gz |
gnu: python-fake-factory: Update to 0.7.2.
* gnu/packages/python.scm (python-fake-factory): Update to 0.7.2.
[arguments]: Remove phase disabling failing test.
[home-page]: Use https.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a1865574cb..353443018a 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -9816,24 +9816,14 @@ parsing UK postcodes.") (define-public python-fake-factory (package (name "python-fake-factory") - (version "0.5.7") + (version "0.7.2") (source (origin (method url-fetch) (uri (pypi-uri "fake-factory" version)) (sha256 (base32 - "1chmarnrdzn4r017n8qlic0m0bbnhw04s3hkwribjvm3mqpb6pa0")))) + "0vs0dkmg0dlaxf8w6q2i3k0i03gmp56ablldv7ci9x3nbadkn71g")))) (build-system python-build-system) - (arguments - '(#:phases - (modify-phases %standard-phases - (add-before 'check 'disable-failing-test - ;; XXX: faker/tests/ne_np/__init__.py, line 40, in test_names - ;; first_name, last_name = name.split() - ;; ValueError: too many values to unpack (expected 2) - (lambda _ - (delete-file "faker/tests/ne_np/__init__.py") - #t))))) (native-inputs `(("python-setuptools" ,python-setuptools) ;; For testing @@ -9843,7 +9833,7 @@ parsing UK postcodes.") (propagated-inputs `(("python-dateutil" ,python-dateutil-2) ("python-six" ,python-six))) - (home-page "http://github.com/joke2k/faker") + (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, |