Remove existing packages in upstream.

Julien LepillerFri Apr 21 15:58:08+0200 2017

5c39bd9

Remove existing packages in upstream.

more/packages/django.scm

2828
  #:use-module (more packages python))
2929
3030
31-
(define-public python-django-allauth
32-
  (package
33-
    (name "python-django-allauth")
34-
    (version "0.30.0")
35-
    (source (origin
36-
              (method url-fetch)
37-
              (uri (pypi-uri "django-allauth" version))
38-
              (sha256
39-
               (base32
40-
                "1fslqc5qqb0b66yscvkyjwfv8cnbfx5nlkpnwimyb3pf1nc1w7r3"))))
41-
    (build-system python-build-system)
42-
    (propagated-inputs
43-
     `(("python-django" ,python-django)
44-
       ("python-mock" ,python-mock)
45-
       ("python-openid" ,python-openid)
46-
       ("python-requests" ,python-requests)
47-
       ("python-requests-oauthlib" ,python-requests-oauthlib)))
48-
    (home-page "http://www.intenct.nl/projects/django-allauth")
49-
    (synopsis "Reusable Django app for local and social authentication")
50-
    (description
51-
      "django-allauth is a reusable Django app that allows for both local and
52-
social authentication, with flows that just work.")
53-
    (license license:expat)))
54-
55-
(define-public python2-django-allauth
56-
  (package
57-
    (inherit (package-with-python2 python-django-allauth))
58-
    (propagated-inputs
59-
     `(("python-django" ,python2-django)
60-
       ("python-mock" ,python2-mock)
61-
       ("python-openid" ,python2-openid)
62-
       ("python-requests" ,python2-requests)
63-
       ("python-requests-oauthlib" ,python2-requests-oauthlib)))))
64-
6531
(define-public python-django-assets
6632
  (package
6733
    (name "python-django-assets")

more/packages/python.scm

3030
  #:use-module (guix utils)
3131
  #:use-module (guix build-system python))
3232
33-
(define-public python-setuptools-scm
34-
  (package
35-
    (name "python-setuptools-scm")
36-
    (version "1.15.0")
37-
    (source (origin
38-
              (method url-fetch)
39-
              (uri (pypi-uri "setuptools_scm" version))
40-
              (sha256
41-
               (base32
42-
                "0bwyc5markib0i7i2qlyhdzxhiywzxbkfiapldma8m91m82jvwfs"))))
43-
    (build-system python-build-system)
44-
    (home-page "https://github.com/pypa/setuptools_scm/")
45-
    (synopsis "Manage Python package versions in SCM metadata")
46-
    (description
47-
     "Setuptools_scm handles managing your Python package versions in
48-
@dfn{software configuration management} (SCM) metadata instead of declaring
49-
them as the version argument or in a SCM managed file.")
50-
    (license license:expat)))
51-
52-
(define-public python2-setuptools-scm
53-
  (package-with-python2 python-setuptools-scm))
54-
5533
(define-public python-pytest-runner
5634
  (package
5735
    (name "python-pytest-runner")

513491
(define-public python2-elasticsearch
514492
  (package-with-python2 python-elasticsearch))
515493
494+
;; TODO: python-dateutil in guix/packages/python.scm
516495
(define-public python-dateutil-2
517496
  (package
518497
    (name "python-dateutil")