diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-19 14:38:56 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 12:45:59 -0400 |
commit | 8f3eb93cb0d2e1c506995050496e32e30911dd34 (patch) | |
tree | 67711e316b436994e809f70c490fed572359792a /gnu/packages/python-xyz.scm | |
parent | d153caabac440073d2123e9ed56151f3da6b3370 (diff) | |
download | guix-8f3eb93cb0d2e1c506995050496e32e30911dd34.tar guix-8f3eb93cb0d2e1c506995050496e32e30911dd34.tar.gz |
gnu: python-can: Update to 4.0.0.
* gnu/packages/python-xyz.scm (python-can): Update to 4.0.0.
[phases]: Strip trailing #t.
{relax-version-requirements}: Relax pytest-cov requirement.
{check}: Override phase.
[propagated-inputs]: Remove python-aenum. Add python-msgpack and
python-typing-extensions.
[native-inputs]: Add python-parameterized.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 21b4ac3131..86365a04c2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2119,14 +2119,14 @@ class.") (define-public python-can (package (name "python-can") - (version "3.3.4") + (version "4.0.0") (source (origin (method url-fetch) (uri (pypi-uri "python-can" version)) (sha256 (base32 - "0jclrvyxasaaxr0albq0kqrnrfqdgqxs7m2qw9nd8kfwg8xj4g1d")))) + "0pcbdgdw94lc2sxd56w6wdsshrs9dd5d3wp0x4sfd0drzx32inar")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -2137,8 +2137,8 @@ class.") (("coverage<5") "coverage") (("pytest~=4\\.6") "pytest") (("pytest-timeout~=1\\.3") "pytest-timeout") - (("hypothesis~=4\\.56") "hypothesis")) - #t)) + (("pytest-cov.*") "pytest-cov\n") + (("hypothesis~=4\\.56") "hypothesis")))) (add-after 'unpack 'fix-broken-tests ;; The tests try to run two scripts it expects should be ;; in PATH, but they aren't at this time (see: @@ -2146,16 +2146,26 @@ class.") (lambda _ (substitute* "test/test_scripts.py" (("\"can_logger\\.py --help\"") "") - (("\"can_player\\.py --help\"") "")) - #t))))) + (("\"can_player\\.py --help\"") "")))) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-vv" "test" + ;; Disable tests which require specific CAN + ;; drivers we have no package for in Guix. + "--ignore" "test/test_interface_canalystii.py" + ;; These tests fail with "OSError: [Errno 19] + ;; No such device". + "-k" "not BasicTestUdpMulticastBusIPv"))))))) (propagated-inputs - (list python-aenum python-wrapt)) + (list python-msgpack python-typing-extensions python-wrapt)) (native-inputs (list python-codecov python-coverage python-future python-hypothesis python-mock + python-parameterized python-pyserial python-pytest python-pytest-cov |