summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/breezy (follow)
Commit message (Expand)AuthorAgeFilesLines
* treewide: remove superfluous disabled•••There is no need to disable Python packages for Python versions that are no longer in Nixpkgs. This change was generated using the following script: pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$' for f in $(find -name '*.nix'); do grep -q "$pattern" "$f" || continue sed -i "/$pattern/d" "$f" if [ $(grep -c pythonOlder "$f") == 1 ]; then sed -i '/^\s*pythonOlder,\s*$/d' "$f" fi nixfmt "$f" done Robert Schütz2026-01-111-3/+0
* treewide: remove remaining `meta = with lib;`Ihar Hrachyshka2025-12-141-2/+2
* treewide: clean up 'meta = with' pattern•••This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de> Ihar Hrachyshka2025-12-101-1/+1
* treewide: run nixfmt 1.0.0Wolfgang Walther2025-07-241-14/+13
* python313Packages.breezy: 3.3.10 -> 3.3.12•••Updated to include fix for https://bugs.launchpad.net/brz/+bug/2103478 Katherina Walshe-Grey2025-06-042-12/+12
* python3Packages.breezy: 3.3.7 -> 3.3.10•••Updated the package because pyo3 not supporting python3.13 in the previous Clément2025-03-222-167/+50
* treewide: replace passthru.optional-dependencies with optional-dependenciesRobert Schütz2024-09-291-8/+9
* 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
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-52/+45
* maintainers: drop marsamMario Rodas2024-04-241-1/+1
* python311Packages.breezy: 3.3.6 -> 3.3.7•••Diff: https://github.com/breezy-team/breezy/compare/brz-3.3.6...brz-3.3.7 Changelog: https://github.com/breezy-team/breezy/blob/brz-3.3.7/doc/en/release-notes/brz-3.3.txt Mario Rodas2024-04-032-6/+6
* python311Packages.breezy: 3.3.5 -> 3.3.6•••Diff: https://github.com/breezy-team/breezy/compare/brz-3.3.5...brz-3.3.6 Changelog: https://github.com/breezy-team/breezy/blob/brz-3.3.6/doc/en/release-notes/brz-3.3.txt Mario Rodas2024-04-012-40/+50
* python311Packages.breezy: 3.3.4 -> 3.3.5•••Diff: https://github.com/breezy-team/breezy/compare/brz-3.3.4...brz-3.3.5 Changelog: https://github.com/breezy-team/breezy/blob/brz-3.3.5/doc/en/release-notes/brz-3.3.txt Mario Rodas2024-01-272-65/+65
* breezy: add patch for differentiating GitLab forges properlyLuke Granger-Brown2023-10-141-0/+9
* breezy: add github support•••Breezy offers Github support as a `forge` which is used by [`silver-platter`](https://github.com/jelmer/silver-platter), which I'm currently importing into nixpkgs. Luke Granger-Brown2023-09-231-1/+6
* python310Packages.breezy: 3.3.3 -> 3.3.4•••Diff: https://github.com/breezy-team/breezy/compare/brz-3.3.3...brz-3.3.4 Changelog: https://github.com/breezy-team/breezy/blob/brz-3.3.4/doc/en/release-notes/brz-3.3.txt Mario Rodas2023-09-082-72/+75
* python310Packages.breezy: add changelog to metaMario Rodas2023-05-271-0/+1
* python310Packages.breezy: 3.3.2 -> 3.3.3Mario Rodas2023-05-272-101/+117
* treewide: don't use rustPlatform.rust•••This will be deprecated in the next commit. Alyssa Ross2023-05-121-2/+4
* python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. Martin Weinelt2023-03-031-1/+1
* python310Packages.breezy: 3.2.2 -> 3.3.2Mario Rodas2023-03-012-13/+389
* 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
* breezy: install completionsMario Rodas2022-04-301-0/+5
* breezy: 3.2.1 -> 3.2.2Mario Rodas2022-04-301-5/+15
* breezy: 3.2.0 -> 3.2.1R. RyanTM2021-07-091-2/+2
* breezy: 3.1.0 -> 3.2.0R. RyanTM2021-05-041-2/+2
* python3Packages.breezy: fix buildSebastian Wild2020-12-071-1/+2
* python3Packages.breezy: 3.0.2 -> 3.1.0Frederik Rietdijk2020-12-011-2/+2
* Revert "python: breezy: 3.0.2 -> 3.1.0"•••This reverts commit 89437751f958b32123f5593a7268da5e40de0e80. Build adds more dependencies Jonathan Ringer2020-08-191-2/+2
* python: breezy: 3.0.2 -> 3.1.0Frederik Rietdijk2020-08-161-2/+2
* breezy: init at 3.0.2Mario Rodas2020-02-281-0/+41