summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/azure-core (follow)
Commit message (Expand)AuthorAgeFilesLines
* python3Packages.azure-core: 1.31.0 -> 1.32.0•••https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.32.0/sdk/core/azure-core/CHANGELOG.md Martin Weinelt2025-01-271-2/+2
* python3Packages.azure-core: 1.30.2 -> 1.31.0•••https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.31.0/sdk/core/azure-core/CHANGELOG.md Martin Weinelt2024-10-131-3/+4
* treewide: replace passthru.optional-dependencies with optional-dependenciesRobert Schütz2024-09-291-2/+2
* treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`•••In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ``` Artturin2024-09-251-1/+1
* treewide: remove unused with statements from maintainer lists•••$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!' Jörg Thalheim2024-07-291-1/+1
* Merge master into staging-nextgithub-actions[bot]2024-06-251-1/+1
|\
| * treewide: remove jonringer as package maintainer•••Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> Paul Meyer2024-06-251-1/+1
* | python3Packages.azure-core: 1.30.1 -> 1.30.2•••https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.30.2/sdk/core/azure-core/CHANGELOG.md Martin Weinelt2024-06-241-2/+2
|/
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-33/+26
* python311Packages.azure-core: 1.30.0 -> 1.30.1•••Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.30.1/sdk/core/azure-core/CHANGELOG.md Fabian Affolter2024-03-051-2/+2
* python311Packages.azure-core: 1.28.0 -> 1.30.0•••Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.30.0/sdk/core/azure-core/CHANGELOG.md Fabian Affolter2024-02-231-6/+10
* python311Packages.azure-core: 1.26.3 -> 1.28.0•••Changelog: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CHANGELOG.md Fabian Affolter2023-07-141-7/+20
* python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. Martin Weinelt2023-03-031-1/+1
* python3Packages.azure-core: 1.26.2 -> 1.26.3Nick Cao2023-02-051-2/+2
* python3Packages.azure-core: 1.26.1 -> 1.26.2Nick Cao2023-02-051-2/+2
* treewide: switch to nativeCheckInputs•••checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs. Guillaume Girol2023-01-211-2/+2
* python3Packages.azure-core: 1.25.1 -> 1.26.1Martin Weinelt2023-01-051-2/+2
* Merge pull request #188241 from centromere/fix-azure-core•••python3Packages.azure-core: Fix sandboxed build on DarwinJörg Thalheim2022-12-011-0/+2
|\
| * python3Packages.azure-core: Fix sandboxed build on DarwinAlex Wied2022-10-191-0/+2
* | treewide: optional -> optionals where the argument is a list•••the argument to optional should not be list Artturin2022-10-101-1/+1
|/
* python3Packages.azure-core: remove msrest as dependency•••- fixes circular dependency introduced my updating msrest to 0.7.1 Signed-off-by: Florian Brandes <florian.brandes@posteo.de> Florian Brandes2022-10-011-2/+5
* python3Packages.azure-core: 1.24.2 -> 1.25.1Martin Weinelt2022-09-181-2/+2
* Merge master into staging-nextgithub-actions[bot]2022-07-271-15/+8
|\
| * python310Packages.azure-core: 1.24.0 -> 1.24.2Jonas Heinrich2022-07-271-15/+8
* | python3Packages.azure-core: disable transport testsJonathan Ringer2022-07-211-0/+2
|/
* python310Packages.azure-core: update disabledSandro Jäckel2022-05-161-2/+2
* python*Packages.azure-core: 1.23.1 -> 1.24.0, fix tests•••Upstream PR: https://github.com/Azure/azure-sdk-for-python/pull/24450 K9002022-05-151-3/+13
* python3Packages.azure-core: propagate typing-extensionsMartin Weinelt2022-04-151-1/+1
* python3Packages.azure-core: 1.23.0 -> 1.23.1Martin Weinelt2022-04-151-2/+4
* python3Packages.azure-core: 1.22.1 -> 1.23.0Martin Weinelt2022-04-131-2/+2
* Merge branch 'staging-next' into stagingVladimír Čunát2022-03-211-2/+13
|\
| * python3Packages.azure-core: disable test failing on some darwin systemsMalo Bourgon2022-03-201-2/+13
* | python3Packages.azure-core: 1.21.1 -> 1.22.1Martin Weinelt2022-03-141-2/+2
|/
* python3Packages.azure-core: 1.20.1 -> 1.21.1Jonathan Ringer2021-12-141-2/+2
* python3Packages.azure-core: 1.17.0 -> 1.20.1Jonathan Ringer2021-11-231-2/+2
* python3Packages.azure-core: fix testsJonathan Ringer2021-10-101-0/+5
* python3Packages.azure-core: 1.16.0 -> 1.17.0Martin Weinelt2021-09-011-2/+2
* python3Packages.azure-core: 1.15.0 -> 1.16.0Jonathan Ringer2021-07-051-2/+6
* python3Packages.azure-core: 1.14.0 -> 1.15.0Jonathan Ringer2021-06-091-2/+2
* python3Packages.azure-core: 1.13.0 -> 1.14.0Jonathan Ringer2021-05-201-4/+9
* python3Packages.azure-core: 1.12.0 -> 1.13.0Jonathan Ringer2021-05-061-2/+4
* python3Packages.azure-core: 1.10.0 -> 1.12.0Jonathan Ringer2021-03-141-2/+2
* python3Packages.azure-core: 1.9.0 -> 1.10.0Jonathan Ringer2021-01-121-2/+2
* python3Packages.azure-core: 1.8.2 -> 1.9.0Jonathan Ringer2020-11-291-2/+2
* python3Packages.azure-core: 1.8.1 -> 1.8.2Jonathan Ringer2020-11-021-2/+2
* python3Packages.azure-core: 1.8.0 -> 1.8.1Jonathan Ringer2020-09-291-2/+2
* python3Packages.azure-core: 1.7.0 -> 1.8.0Jonathan Ringer2020-08-161-2/+2
* python3Packages.azure-core: fix testsJonathan Ringer2020-08-091-1/+6
* python37Packages.azure-core: 1.6.0 -> 1.7.0R. RyanTM2020-07-141-2/+2
* python: azure-core: 1.5.0 -> 1.6.0Frederik Rietdijk2020-06-111-2/+2