[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 20/31] gnu: Add python-discover.
From: |
Ludovic Courtès |
Subject: |
Re: [PATCH 20/31] gnu: Add python-discover. |
Date: |
Fri, 05 Sep 2014 22:10:50 +0200 |
User-agent: |
Gnus/5.130011 (Ma Gnus v0.11) Emacs/24.3 (gnu/linux) |
David Thompson <address@hidden> skribis:
> * gnu/packages/python.scm (python-discover, python2-discover): New variables.
[...]
> +(define-public python-coverage
> + (package
> + (name "python-coverage")
> + (version "3.7.1")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append
> + "https://pypi.python.org/packages/source/c/coverage/coverage-"
> + version ".tar.gz"))
> + (sha256
> + (base32
> + "0knlbq79g2ww6xzsyknj9rirrgrgc983dpa2d9nkdf31mb2a3bni"))))
> + (build-system python-build-system)
> + (inputs
> + `(("python-setuptools" ,python-setuptools)))
> + (home-page "http://nedbatchelder.com/code/coverage")
> + (synopsis "Code coverage measurement for Python")
> + (description
> + "Coverage measures code coverage, typically during test execution. It
> +uses the code analysis tools and tracing hooks provided in the Python
> standard
> +library to determine which lines are executable, and which have been
> +executed.")
> + (license bsd-3)))
> +
> +(define-public python2-coverage
> + (package-with-python2 python-coverage))
This one looks OK, but you may want to move it to a separate patch, or
to mention it in the commit log.
> +(define-public python-discover
OK.
Ludo’.
- Re: [PATCH 26/31] gnu: Add python-pip., (continued)
- [PATCH 12/31] gnu: Add python-pytest., David Thompson, 2014/09/05
- [PATCH 28/31] gnu: Add python-jinja2., David Thompson, 2014/09/05
- [PATCH 27/31] gnu: Add python-markupsafe., David Thompson, 2014/09/05
- [PATCH 29/31] gnu: Add python-docutils., David Thompson, 2014/09/05
- [PATCH 20/31] gnu: Add python-discover., David Thompson, 2014/09/05
- Re: [PATCH 20/31] gnu: Add python-discover.,
Ludovic Courtès <=
- [PATCH 30/31] gnu: Add python-pygments., David Thompson, 2014/09/05
- [PATCH 31/31] gnu: Add python-sphinx., David Thompson, 2014/09/05
- Re: [PATCH 01/31] gnu: Add python-exif-read., Ludovic Courtès, 2014/09/05