summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/debugpy (follow)
Commit message (Expand)AuthorAgeFilesLines
* treewide: replace substituteAll with replaceVarsWolfgang Walther2025-02-101-7/+4
* python312Packages.debugpy: 1.8.11 -> 1.8.12Kira Bruneau2025-01-181-2/+2
* python312Packages.debugpy: fix hash due to .gitattributesKira Bruneau2024-12-271-1/+1
* python312Packages.debugpy: 1.8.9 -> 1.8.11Kira Bruneau2024-12-161-3/+3
* python312Packages.debugpy: 1.8.8 -> 1.8.9Kira Bruneau2024-11-235-13/+17
* python312Packages.debugpy: 1.8.7 -> 1.8.8Kira Bruneau2024-11-101-5/+4
* python312Packages.debugpy: 1.8.6 -> 1.8.7•••Update to latest version: https://github.com/microsoft/debugpy/releases/tag/v1.8.7 Kira Bruneau2024-10-111-2/+2
* python312Packages.debugpy: 1.8.5 -> 1.8.6 (#344467)Kira Bruneau2024-09-294-13/+13
|\
| * python312Packages.debugpy: 1.8.5 -> 1.8.6Kira Bruneau2024-09-254-13/+13
* | 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-4/+4
|/
* python311Packages.debugpy: 1.8.2 -> 1.8.5Kira Bruneau2024-08-081-2/+2
* Merge master into staging-nextgithub-actions[bot]2024-07-211-0/+4
|\
| * python3Packages.debugpy: disable tests for unmaintained pythonsKira Bruneau2024-07-201-0/+4
* | python3Packages.debugpy: 1.8.1 -> 1.8.2Kira Bruneau2024-07-161-2/+2
|/
* treewide: Remove indefinite article from meta.description•••nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/' Alexis Hildebrandt2024-06-091-1/+1
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-78/+91
* python311Packages.debugpy: 1.8.0 -> 1.8.1•••https://github.com/microsoft/debugpy/releases/tag/v1.8.1 Kira Bruneau2024-03-166-32/+67
* python3Packages.debugpy: 1.8.0 -> 1.8.1•••https://github.com/microsoft/debugpy/releases/tag/v1.8.1 Martin Weinelt2024-03-121-2/+2
* python3Packages.debugpy: disable tests on *-linux (for now)•••Feel free to make this more precise - or even resolve the issues. Vladimír Čunát2024-03-081-0/+2
* python3Packages.debugpy: 1.6.7.post1 -> 1.8.0Martin Weinelt2023-09-271-10/+3
* python311Packages.debugpy: 1.6.7.post1 -> 1.8.0Gutyina Gergő2023-09-181-12/+8
* python310Packages.debugpy: disable process test timeoutsKira Bruneau2023-08-281-5/+10
* python310Packages.debugpy: 1.6.7 -> 1.6.7.post1R. Ryantm2023-08-201-2/+2
* python310Packages.debugpy: increase timeouts on testsKira Bruneau2023-05-051-1/+7
* python310Packages.debugpy: 1.6.6 -> 1.6.7Kira Bruneau2023-05-015-18/+12
* python311Packages.debugpy: disable 3.11 build until supportedKira Bruneau2023-03-231-1/+4
* python310Packages.debugpy: fix src hashSandro Jäckel2023-03-231-1/+1
* python3Packages.debugpy: fix test failuresAustin Butler2023-03-171-1/+12
* Merge remote-tracking branch 'origin/master' into staging-nextMartin Weinelt2023-03-062-6/+26
|\
| * python3Packages.debugpy: lldb supportEnno Richter2023-02-172-6/+26
* | python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. Martin Weinelt2023-03-031-1/+1
|/
* Merge pull request #211881 from kira-bruneau/python3Packages.debugpy•••python3Packages.debugpy: 1.6.5 → 1.6.6Jonas Heinrich2023-01-221-4/+4
|\
| * python3Packages.debugpy: 1.6.5 → 1.6.6Kira Bruneau2023-01-211-4/+4
* | 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-1/+1
|/
* python310Packages.debugpy: 1.6.4 -> 1.6.5R. Ryantm2023-01-091-2/+2
* python310Packages.debugpy: add changelog to metaFabian Affolter2022-11-291-0/+1
* python310Packages.debugpy: 1.6.3 -> 1.6.4R. Ryantm2022-11-291-2/+2
* python3Packages.debugpy: fix thread crashes in tests on aarch64-darwinFrank Moda2022-09-281-0/+9
* python3Packages.debugpy: 1.6.2 → 1.6.3Kira Bruneau2022-08-161-10/+2
* Merge remote-tracking branch 'origin/master' into staging-nextMartin Weinelt2022-07-224-40/+37
|\
| * python3Packages.debugpy: 1.6.0 → 1.6.2Kira Bruneau2022-07-164-36/+33
| * python3Packages.debugpy: remove unnecessary arch specifiersKira Bruneau2022-07-111-5/+5
* | python3Packages.debugpy: 1.6.0 -> 1.6.2Martin Weinelt2022-07-211-3/+3
|/
* treewide: remove redundant numprocesses pytest-xdist parameter•••Including the pytest-xdist package automatically configures numprocesses to $NIX_BUILD_CORES, so specifying these on a package level has become redundant. Martin Weinelt2022-04-151-1/+0
* python310Packages.debugpy: 1.5.1 -> 1.6.0R. Ryantm2022-03-271-2/+2
* python310Packages.debugpy: disable failing testsFabian Affolter2022-01-131-2/+21
* pythonPackages.debugpy: add aarch64-linux compile flagsMauricio Collares2021-11-301-1/+2
* python3Packages.debugpy: 1.5.0 -> 1.5.1Fabian Affolter2021-10-241-2/+2
* pythonPackages.debugpy: 1.4.3 → 1.5.0Kira Bruneau2021-10-161-17/+8
* Merge master into staging-nextgithub-actions[bot]2021-09-124-17/+15
|\