[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/12: gnu: Add python-hacking.
From: |
Cyril Roelandt |
Subject: |
06/12: gnu: Add python-hacking. |
Date: |
Tue, 03 Nov 2015 20:39:27 +0000 |
steap pushed a commit to branch master
in repository guix.
commit 2ac9ba6a2914c73ff83dbd7b4ba7b47333476685
Author: Cyril Roelandt <address@hidden>
Date: Mon Oct 12 00:47:16 2015 +0200
gnu: Add python-hacking.
* gnu/packages/openstack.scm (python-hacking,
python2-hacking): New variables.
---
gnu/packages/openstack.scm | 34 ++++++++++++++++++++++++++++++++++
1 files changed, 34 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 4fd1c80..fc86881 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -100,6 +100,40 @@ manner.")
(define-public python2-debtcollector
(package-with-python2 python-debtcollector))
+(define-public python-hacking
+ (package
+ (name "python-hacking")
+ (version "0.10.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "hacking" version))
+ (sha256
+ (base32
+ "1a310k3dv04jg7zvmk37h2ql7y9kf4hvdxb74bjlwdxgmy6h4wap"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-flake8-2.2.4" ,python-flake8-2.2.4)
+ ("python-mccabe-0.2.1" ,python-mccabe-0.2.1)
+ ("python-pbr" ,python-pbr)
+ ("python-pep8-1.5.7" ,python-pep8-1.5.7)
+ ("python-pyflakes-0.8.1" ,python-pyflakes-0.8.1)
+ ("python-six" ,python-six)))
+ (inputs
+ `(("python-setuptools" ,python-setuptools)
+ ;; Tests
+ ("python-testscenarios" ,python-testscenarios)))
+ (home-page "http://github.com/openstack-dev/hacking")
+ (synopsis "OpenStack hacking guideline enforcement")
+ (description
+ "Python-hacking is a set of flake8 plugins that test and enforce the
address@hidden://docs.openstack.org/developer/hacking/, OpenStack style
+guidelines}.")
+ (license asl2.0)))
+
+(define-public python2-hacking
+ (package-with-python2 python-hacking))
+
(define-public python-mox3
(package
(name "python-mox3")
- branch master updated (f8ae32a -> 465b61f), Cyril Roelandt, 2015/11/03
- 04/12: gnu: Add python-mccabe 0.2.1, Cyril Roelandt, 2015/11/03
- 05/12: gnu: Add python-flake8-2.2.4, Cyril Roelandt, 2015/11/03
- 01/12: guix: Add a "pypi-uri" helper method., Cyril Roelandt, 2015/11/03
- 02/12: import: pypi: Use "pypi-uri" instead of building the URL manually., Cyril Roelandt, 2015/11/03
- 03/12: gnu: Update python-requests., Cyril Roelandt, 2015/11/03
- 06/12: gnu: Add python-hacking.,
Cyril Roelandt <=
- 07/12: gnu: Add python-oslosphinx., Cyril Roelandt, 2015/11/03
- 08/12: gnu: Add python-os-testr., Cyril Roelandt, 2015/11/03
- 09/12: gnu: paramiko: Move python-pycrypto to the propagated inputs., Cyril Roelandt, 2015/11/03
- 10/12: gnu: Add python-oslo.log., Cyril Roelandt, 2015/11/03
- 12/12: gnu: Add python-tempest-lib., Cyril Roelandt, 2015/11/03
- 11/12: gnu: python-oslotest: move mox3 to the propagated-inputs, Cyril Roelandt, 2015/11/03