summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
AgeCommit message (Collapse)Author
2026-05-05python3Packages.uproot: 5.7.3 -> 5.7.4 (#516668)kirillrdy
2026-05-05Merge staging-next into stagingnixpkgs-ci[bot]
2026-05-05python3Packages.scikits-odes{,-daepack}: fix build (#511691)Michael Daniels
2026-05-05python3Packages.multiscale-spatial-image: migrate to finalAttrsFabian Affolter
2026-05-05python3Packages.multiscale-spatial-image: update build-systemFabian Affolter
- add imssing inputs
2026-05-05python3Packages.ngff-zarr: init at 0.34.0Fabian Affolter
Open Microscopy Environment (OME) Next Generation File Format (NGFF) Zarr implementation https://github.com/fideus-labs/ngff-zarr
2026-05-05python3Packages.itkwasm-image-io: init at 1.6.1Fabian Affolter
Input and output for scientific and medical image file formats https://pypi.org/project/itkwasm-image-io
2026-05-05python3Packages.itkwasm-image-io-wasi: init at 1.6.1Fabian Affolter
Input and output for scientific and medical image file formats https://pypi.org/project/itkwasm-image-io-wasi
2026-05-05python3Packages.itkwasm-image-io-emscripten: init at 1.6.1Fabian Affolter
Input and output for scientific and medical image file formats https://pypi.org/project/itkwasm-image-io-emscripten
2026-05-05python3Packages.itkwasm-downsample: init at 1.8.1Fabian Affolter
Pipelines for downsampling images https://pypi.org/project/itkwasm-downsample
2026-05-05python3Packages.itkwasm-downsample-emscripten: init at 1.8.1Fabian Affolter
Pipelines for downsampling images https://pypi.org/project/itkwasm-downsample-emscripten
2026-05-04python3Packages.accelerate: fix tests on darwinIhar Hrachyshka
2026-05-04python3Packages.neo: 0.14.3 -> 0.14.4; skip incompatible test (#516564)Michael Daniels
2026-05-04python3Packages.pylitterbot: 2025.3.2 -> 2025.4.0R. Ryantm
2026-05-04python3Packages.sentry-sdk: 2.58.0 -> 2.59.0 (#516652)Martin Weinelt
2026-05-04python3Packages.uproot: 5.7.3 -> 5.7.4Gaetan Lepage
Diff: https://github.com/scikit-hep/uproot5/compare/v5.7.3...v5.7.4 Changelog: https://github.com/scikit-hep/uproot5/releases/tag/v5.7.4
2026-05-04python3Packages.primer3: fix build (#516399)Michael Daniels
2026-05-04python3Packages.saiph: 2.0.7 -> 2.0.8R. Ryantm
2026-05-04python3Packages.apex: init at 25.09Gaetan Lepage
2026-05-04maintainers: drop HaoZeke (#515955)Yohann Boniface
2026-05-04python3Packages.mockfs: fix build (#516509)Yohann Boniface
2026-05-04python3Packages.wfuzz: fix Python 3.13 plugin breakage and add netaddr ↵Peder Bergebakken Sundt
runtime dep (#516508)
2026-05-04python3Packages.sentry-sdk: 2.58.0 -> 2.59.0Martin Weinelt
https://github.com/getsentry/sentry-python/blob/2.59.0/CHANGELOG.md
2026-05-04python3Packages.utitools: mark broken on darwin (#516614)Yohann Boniface
2026-05-04python3Packages.colorcet: 3.1.0 -> 3.2.1R. Ryantm
2026-05-04python3Packages.openfga-sdk: 0.10.2 -> 0.10.3 (#516584)Nick Cao
2026-05-04python3Packages.rchitect: 0.4.9 -> 0.4.10 (#516576)Nick Cao
2026-05-04python3Packages.linode-metadata: 0.3.4 -> 0.3.5 (#516312)Nick Cao
2026-05-04python3Packages.python-lsp-server: fix build on x86_64-darwin (#511527)Ben Siraphob
2026-05-04python3Packages.scrap-engine: 1.5.1 -> 1.5.4 (#516350)Nick Cao
2026-05-04python3Packages.glyphslib: 6.13.0 -> 6.13.1 (#516200)Nick Cao
2026-05-04python3Packages.fastexcel: 0.20.1 -> 0.20.2 (#516491)kirillrdy
2026-05-04pocket-tts: 2.0.0 -> 2.1.0 (#516570)kirillrdy
2026-05-04python3Packages.apify-fingerprint-datapoints: 0.12.0 -> 0.13.0R. Ryantm
2026-05-04maintainers: drop sbruder (#516527)Gaétan Lepage
2026-05-04python3Packages.pyexploitdb: 0.3.24 -> 0.3.25R. Ryantm
2026-05-04python3Packages.utitools: mark broken on darwinHythera
2026-05-04python3Packages.widlparser: 1.4.0 -> 1.5.0 (#516119)Nick Cao
2026-05-04python3Packages.wfuzz: add bad3r as maintainerBad3r
2026-05-04python3Packages.wfuzz: tidy style nitsBad3r
- Sort dependencies alphabetically (pyparsing/setuptools/six were out of order relative to nixpkgs Python convention). - Note that the imp -> importlib patch is needed for Python >= 3.12, not just 3.12, since imp stays removed in 3.13+. - Use the canonical "v\${version}" form for the changelog URL instead of reaching through finalAttrs.src.tag.
2026-05-04python3Packages.wfuzz: add netaddr to runtime dependenciesBad3r
The iprange and ipnet payload plugins (src/wfuzz/plugins/payloads/ {iprange,ipnet}.py) lazily import netaddr and, on ImportError, raise FuzzExceptBadInstall("...requires netaddr module. Please install it using pip."). Without this dep, `wfuzz -z iprange,192.168.1.1-...` and `-z ipnet,...` fail on a Nix-built wfuzz with a misleading pip-install message. netaddr stays in nativeCheckInputs since tests/api/test_payload.py also exercises the ipranges payload.
2026-05-04python3Packages.wfuzz: fix screenshot plugin on Python 3.13Bad3r
`pipes` was deprecated in Python 3.11 (PEP 594) and removed in 3.13; src/wfuzz/plugins/scripts/screenshot.py imports it and fails to load on 3.13 with `No module named 'pipes'`. The module loader catches the ImportError and silently drops the plugin, so `wfuzz -e scripts` no longer lists `screenshot`. Replace `pipes.quote` with `shlex.quote` (the documented stdlib replacement; identical semantics for the single argument used here). Reported upstream at xmendez/wfuzz#380.
2026-05-04python3Packages.wfuzz: set meta.mainProgramBad3r
The package installs four console scripts (wfuzz, wfpayload, wfencode, wxfuzz) and is exposed at the top level via toPythonApplication, so lib.getExe and `nix run` need an explicit primary binary to avoid the default-pname fallback warning.
2026-05-04python3Packages.bqplot: 0.12.45 -> 0.12.46 (#516147)Nick Cao
2026-05-04python3Packages.ultralytics-thop: 2.0.18 -> 2.0.19 (#515699)Nick Cao
2026-05-04ultralytics: 8.4.41 -> 8.4.46 (#515789)Nick Cao
2026-05-04various: drop maintainership of some packgesjopejoe1
2026-05-04Merge remote-tracking branch 'origin/staging-next' into stagingK900
2026-05-04python3Packages.crewai: 1.14.3 -> 1.14.4 (#516492)Gaétan Lepage
2026-05-04python3Packages.oscpy: drop patch already included in upstream (#516545)Luna Nova