diff options
author | Maxim Cournoyer <[email protected]> | 2020-09-29 12:43:39 -0400 |
---|---|---|
committer | Maxim Cournoyer <[email protected]> | 2020-10-02 21:47:28 -0400 |
commit | f7f5caf7ea78d2c257a081c8fcf212e507fe2ab6 (patch) | |
tree | 3e62acad2e2cfd9be6f0d1a3281f97181e5d325f | |
parent | 01f3f0e928bd614b8b2c9aea5b93bdc6a4b07963 (diff) |
gnu: Add python-pyux.
* gnu/packages/python-check.scm (python-pyux): New variable.
-rw-r--r-- | gnu/packages/python-check.scm | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 4873df4b48..498f495584 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2019 Ricardo Wurmus <[email protected]> ;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2019, 2020 Efraim Flashner <[email protected]> -;;; Copyright © 2019 Maxim Cournoyer <[email protected]> +;;; Copyright © 2019, 2020 Maxim Cournoyer <[email protected]> ;;; Copyright © 2019 Hartmut Goebel <[email protected]> ;;; Copyright © 2020 Julien Lepiller <[email protected]> ;;; Copyright © 2020 Marius Bakke <[email protected]> @@ -852,6 +852,26 @@ also ensuring that the notebooks are running without errors.") variables in the @file{pytest.ini} file.") (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 (package (name "python-codacy-coverage") |