summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/commoncode (follow)
Commit message (Expand)AuthorAgeFilesLines
* python313Packages.commoncode: migrate to finalAttrsFabian Affolter2026-01-261-4/+4
* python313Packages.commoncode: 32.4.0 -> 32.4.2•••Diff: https://github.com/nexB/commoncode/compare/v32.4.0...v32.4.2 Changelog: https://github.com/nexB/commoncode/blob/v32.4.2/CHANGELOG.rst Fabian Affolter2026-01-261-2/+2
* 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
* python3Packages.commoncode: 32.3.0 -> 32.4.0; fix build failureClément2026-01-091-3/+3
* 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-2/+2
* python3Packages.commoncode: 32.2.1 -> 32.3.0•••Fixes build after click 8.2 upgrade Olivér Falvai2025-10-161-2/+2
* treewide: run nixfmt 1.0.0Wolfgang Walther2025-07-241-15/+14
* python3Packages.commoncode: relax beautifulsoup4 constraintMartin Weinelt2025-04-121-0/+2
* python313Packages.commoncode: 32.1.0 -> 32.2.1•••https://github.com/nexB/commoncode/blob/v32.2.1/CHANGELOG.rst Martin Weinelt2025-04-031-2/+2
* python312Packages.commoncode: 32.0.0 -> 32.1.0R. Ryantm2024-12-151-3/+3
* 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
* python312Packages.commoncode: 31.2.1 -> 32.0.0•••Diff: https://github.com/nexB/commoncode/compare/refs/tags/v31.2.1...v32.0.0 Changelog: https://github.com/nexB/commoncode/blob/v32.0.0/CHANGELOG.rst Fabian Affolter2024-09-051-12/+3
* 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
* python312Packages.commoncode: don't fail if there is no /etc/os-releaseRobert Schütz2024-07-241-14/+12
* python3Packages.commoncode: 31.0.3 -> 31.2.1•••https://github.com/nexB/commoncode/blob/v31.2.1/CHANGELOG.rst Martin Weinelt2024-06-241-5/+12
* 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-34/+33
* python311Packages.commoncode: 31.0.2 -> 31.0.3•••Changelog: https://github.com/nexB/commoncode/blob/v31.0.3/CHANGELOG.rst Fabian Affolter2023-08-281-14/+5
* python3Packages.commoncode: orphanCole Helbling2023-03-221-1/+1
* python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. Martin Weinelt2023-03-031-1/+1
* python3Packages.commoncode: 31.0.0 -> 31.0.2Martin Weinelt2023-03-031-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-1/+1
* python3Packages.commoncode: 30.2.0 -> 31.0.0Martin Weinelt2022-09-181-3/+11
* python310Packages.commoncode: 30.1.1 -> 30.2.0R. Ryantm2022-05-021-2/+2
* python310Packages.commoncode: 30.0.0 -> 30.1.1R. Ryantm2022-04-181-2/+2
* python3Packages.commoncode: relax intbitset constraintMartin Weinelt2022-03-141-1/+6
* python310Packages.commoncode: disable failing testFabian Affolter2022-01-171-0/+8
* python3Packages.commoncode: disable test_searchable_paths on darwinRobert Scott2021-11-071-0/+6
* python3Packages.commoncode: 21.8.31 -> 30.0.0Fabian Affolter2021-10-091-12/+19
* python38Packages.commoncode: 21.8.27 -> 21.8.31R. RyanTM2021-09-221-2/+2
* python3Packages.commoncode: 21.7.23 -> 21.8.27Martin Weinelt2021-09-051-2/+2
* python3Packages.commoncode: 21.6.11 -> 21.7.23Martin Weinelt2021-09-051-2/+2
* python3Packages.commoncode: 21.1.21 -> 21.6.11Martin Weinelt2021-06-211-2/+2
* python3.pkgs.commoncode: init at 21.1.21Cole Helbling2021-04-231-0/+55