gnu: python-setools: Update to 4.4.0.

* gnu/packages/selinux.scm (python-setools): Update to 4.4.0.
[source, home-page]: Update url.
[inputs]: Add python-pyqt.
[native-inputs]: Add python-cython.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Greg Hogan 2022-09-22 19:44:09 +00:00 committed by Ludovic Courtès
parent 35c92a6324
commit d1c3de6583
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -42,6 +42,7 @@ (define-module (gnu packages selinux)
#:use-module (gnu packages pkg-config) #:use-module (gnu packages pkg-config)
#:use-module (gnu packages python) #:use-module (gnu packages python)
#:use-module (gnu packages python-xyz) #:use-module (gnu packages python-xyz)
#:use-module (gnu packages qt)
#:use-module (gnu packages swig) #:use-module (gnu packages swig)
#:use-module (gnu packages xml)) #:use-module (gnu packages xml))
@ -305,16 +306,16 @@ (define-public python-sepolgen
(define-public python-setools (define-public python-setools
(package (package
(name "python-setools") (name "python-setools")
(version "4.1.1") (version "4.4.0")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/TresysTechnology/setools") (url "https://github.com/SELinuxProject/setools")
(commit version))) (commit version)))
(file-name (string-append name "-" version "-checkout")) (file-name (string-append name "-" version "-checkout"))
(sha256 (sha256
(base32 (base32
"0459xxly6zzqc5azcwk3rbbcxvj60dq08f8z6xr05y7dsbb16cg6")))) "1qvd5j6zwq4fmlahg45swjplhif2z89x7s6pnp07gvcp2fbqdsh5"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:tests? #f ; the test target causes a rebuild `(#:tests? #f ; the test target causes a rebuild
@ -339,10 +340,10 @@ (define-public python-setools
(propagated-inputs (propagated-inputs
(list python-networkx)) (list python-networkx))
(inputs (inputs
(list libsepol libselinux)) (list libsepol libselinux python-pyqt))
(native-inputs (native-inputs
(list bison flex swig)) (list bison flex python-cython swig))
(home-page "https://github.com/TresysTechnology/setools") (home-page "https://github.com/SELinuxProject/setools")
(synopsis "Tools for SELinux policy analysis") (synopsis "Tools for SELinux policy analysis")
(description "SETools is a collection of graphical tools, command-line (description "SETools is a collection of graphical tools, command-line
tools, and libraries designed to facilitate SELinux policy analysis.") tools, and libraries designed to facilitate SELinux policy analysis.")