Remove existing packages in upstream.
more/packages/django.scm
28 | 28 | #:use-module (more packages python)) | |
29 | 29 | ||
30 | 30 | ||
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 | - | ||
65 | 31 | (define-public python-django-assets | |
66 | 32 | (package | |
67 | 33 | (name "python-django-assets") |
more/packages/python.scm
30 | 30 | #:use-module (guix utils) | |
31 | 31 | #:use-module (guix build-system python)) | |
32 | 32 | ||
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 | - | ||
55 | 33 | (define-public python-pytest-runner | |
56 | 34 | (package | |
57 | 35 | (name "python-pytest-runner") | |
… | |||
513 | 491 | (define-public python2-elasticsearch | |
514 | 492 | (package-with-python2 python-elasticsearch)) | |
515 | 493 | ||
494 | + | ;; TODO: python-dateutil in guix/packages/python.scm | |
516 | 495 | (define-public python-dateutil-2 | |
517 | 496 | (package | |
518 | 497 | (name "python-dateutil") |