diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-07-22 14:27:19 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-07-22 14:31:28 +0200 |
commit | c799eb2eb8b1a820147af96988eddaa9f752994b (patch) | |
tree | 39a618255f1a2c69f66b30a2aaf818df8cb77376 /gnu/packages | |
parent | 2580c2f07f2882552ecfee5206dccf9ada15c7e1 (diff) | |
download | guix-c799eb2eb8b1a820147af96988eddaa9f752994b.tar.gz guix-c799eb2eb8b1a820147af96988eddaa9f752994b.zip |
gnu: Remove python-fake-factory.
Superseded by python-faker since ce7911ddae5d30ba73c8c9552b7d4e71268e5db3.
* gnu/packages/python.scm (python-fake-factory, python2-fake-factory):
Remove variables.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python.scm | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index ce2864e1c6..e7a40dfcdd 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -11890,53 +11890,6 @@ addresses, and phone numbers.") `(("python2-ipaddress" ,python2-ipaddress) ,@(package-propagated-inputs base)))))) -(define-public python-fake-factory - (package - (name "python-fake-factory") - (version "0.7.2") - (source (origin - (method url-fetch) - (uri (pypi-uri "fake-factory" version)) - (sha256 - (base32 - "0vs0dkmg0dlaxf8w6q2i3k0i03gmp56ablldv7ci9x3nbadkn71g")) - (patches - (search-patches - "python-fake-factory-fix-build-32bit.patch")))) - (build-system python-build-system) - (arguments - '(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda _ - (zero? (system* "python" "-m" "unittest" "-v" "faker.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-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)))))) - (define-public python-pyaml (package (name "python-pyaml") |