python-pyux was removed from Guix upstream.
2 files changed, 25 insertions, 0 deletions
diff --git a/gn/packages/check.scm b/gn/packages/check.scm
index 960e78e..b3964fb 100644
--- a/gn/packages/check.scm
+++ b/gn/packages/check.scm
@@ -1,9 +1,11 @@
(define-module (gn packages check)
#:use-module (guix packages)
#:use-module (guix download)
+ #:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages check)
+ #:use-module (gnu packages python-build)
#:use-module (gnu packages python-xyz)
#:use-module (past packages python27))
@@ -59,3 +61,25 @@ especially -cover-package.")
"Unittest2 is a replacement for the unittest module in the Python
standard library.")
(license license:psfl)))
+
+(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 pyproject-build-system)
+ (arguments
+ `(#:tests? #f)) ;the mini test suite fails
+ (native-inputs
+ (list python-pytest python-setuptools))
+ (home-page "https://github.com/farizrahman4u/pyux")
+ (synopsis "Utility to check API integrity in Python libraries")
+ (description "The pyux utility detects API changes in Python
+libraries.")
+ (license license:expat)))
diff --git a/gn/packages/machine-learning.scm b/gn/packages/machine-learning.scm
index 541b3b6..842a642 100644
--- a/gn/packages/machine-learning.scm
+++ b/gn/packages/machine-learning.scm
@@ -5,6 +5,7 @@
#:use-module (gnu packages machine-learning)
#:use-module (guix download)
#:use-module (guix build-system python)
+ #:use-module (gn packages check)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages graphviz)
#:use-module (gnu packages python-science)
|