diff options
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 58 |
1 files changed, 31 insertions, 27 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index fd42cb9258..2451fd9d04 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2994,7 +2994,7 @@ statements in the module it tests.") (define-public python-pylint (package (name "python-pylint") - (version "3.3.1") + (version "3.3.8") (source (origin (method git-fetch) @@ -3003,7 +3003,7 @@ statements in the module it tests.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "023cd6gqhhykr1gf8w7nxs5n7qgqwwsd4mgn94r14is8gcf1hwvj")))) + (base32 "0h6ynaxsgb5bidjkbrfwb05nc7dw9paxc0bjgkqaxrkpqfm39baj")))) (build-system pyproject-build-system) (arguments (list @@ -3029,16 +3029,14 @@ statements in the module it tests.") (list python-pytest python-pytest-timeout python-pytest-xdist - python-setuptools - python-wheel)) + python-setuptools)) (propagated-inputs (list python-astroid python-dill python-isort python-mccabe python-platformdirs - python-tomlkit - python-typing-extensions)) + python-tomlkit)) (home-page "https://github.com/PyCQA/pylint") (synopsis "Advanced Python code static checker") (description "Pylint is a Python source code analyzer which looks @@ -3934,28 +3932,34 @@ helpers for writing tests.") (define-public subunit (package (name "subunit") - (version "1.4.2") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/testing-cabal/subunit") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "16n1zxwnmhb7vzixngvmm5zzk4q5jaqqjwyr6pr6w0ys60b7xja3")))) + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/testing-cabal/subunit") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fcqxh4cwhn9yz2z1zszzvgc554gai5b7c59w45a4cg9y9p30h8d")))) (build-system gnu-build-system) - (native-inputs (list autoconf - automake - check - cppunit - libtool - pkg-config - python-fixtures - python-hypothesis - python-testscenarios)) - (inputs (list perl python)) - (propagated-inputs (list python-testtools)) + (native-inputs + (list autoconf + automake + check + cppunit + libtool + pkg-config + python-fixtures + python-hypothesis + python-testscenarios)) + (inputs + (list perl + python)) + (propagated-inputs + (list python-iso8601 + python-pygobject + python-testtools)) (home-page "https://github.com/testing-cabal/subunit") (synopsis "Test reporting and control protocol") (description |