gnu: Add python-pyux.

* gnu/packages/python-check.scm (python-pyux): New variable.
This commit is contained in:
Maxim Cournoyer 2020-09-29 12:43:39 -04:00
parent 01f3f0e928
commit f7f5caf7ea
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -2,7 +2,7 @@
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2019, 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2019 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu> ;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
@ -852,6 +852,26 @@ (define-public python-pytest-env
variables in the @file{pytest.ini} file.") variables in the @file{pytest.ini} file.")
(license license:expat))) (license license:expat)))
(define-public python-pyux
(package
(name "python-pyux")
(version "0.0.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pyux" version))
(sha256
(base32
"1i17xh4dy238ibrjdgh8vn78fk5q6dj37mcznpvdfzidj57js7ca"))))
(build-system python-build-system)
(arguments
`(#:tests? #f)) ;the mini test suite fails
(home-page "https://github.com/farizrahman4u/pyux")
(synopsis "Utility to check API integrity in Python libraries")
(description "The pyux utility allows to detect API changes in Python
libraries.")
(license license:expat)))
(define-public python-codacy-coverage (define-public python-codacy-coverage
(package (package
(name "python-codacy-coverage") (name "python-codacy-coverage")