~ruther/guix-local

d8c294e8800aa07b3570f07dfb65872e4e539587 — Ricardo Wurmus 1 year, 2 months ago 5580976
gnu: python-pynetdicom: Update to 2.1.1.

* gnu/packages/python-science.scm (python-pynetdicom): Update to 2.1.1.
[native-inputs]: Add python-codespell, python-coverage, python-poetry-core,
python-pytest-cov, python-pytest-xdist, python-sphinx, and
python-sphinx-rtd-theme; remove python-pyfakefs, python-setuptools, and
python-wheel.
[propagated-inputs]: Add python-mypy, python-numpydoc, and python-pyfakefs.

Change-Id: Ic0089df89cd34b50c31370581db7a6e88884199c
1 files changed, 15 insertions(+), 5 deletions(-)

M gnu/packages/python-science.scm
M gnu/packages/python-science.scm => gnu/packages/python-science.scm +15 -5
@@ 3745,13 3745,13 @@ NeuroML2 models.")
(define-public python-pynetdicom
  (package
    (name "python-pynetdicom")
    (version "2.0.2")
    (version "2.1.1")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "pynetdicom" version))
              (sha256
               (base32
                "0farmgviaarb3f4xn751card3v0lza57vwgl5azxxq65p7li44i3"))))
                "1smzrnc93nmv8jz4np9knas74a46b1nhb3hjpf8n9vfpxypgnwcn"))))
    (build-system pyproject-build-system)
    (arguments
     (list


@@ 3770,9 3770,19 @@ NeuroML2 models.")
                    " and not test_pr_level_patient"
                    " and not test_pr_level_series"
                    " and not test_scp_cancelled"))))
    (native-inputs (list python-pyfakefs python-pytest python-setuptools
                         python-wheel))
    (propagated-inputs (list python-pydicom python-sqlalchemy))
    (native-inputs (list python-codespell
                         python-coverage
                         python-poetry-core
                         python-pytest
                         python-pytest-cov
                         python-pytest-xdist
                         python-sphinx
                         python-sphinx-rtd-theme))
    (propagated-inputs (list python-mypy
                             python-numpydoc
                             python-pydicom
                             python-pyfakefs
                             python-sqlalchemy))
    (home-page "https://github.com/pydicom/pynetdicom")
    (synopsis "Python implementation of the DICOM networking protocol")
    (description