Merge master into staging-next

authored by nixpkgs-ci[bot] and committed by GitHub 701fbe6f fc10bffd

+454 -230
+2 -2
nixos/modules/services/mail/postfix.nix
··· 1235 "services.postfix.lookupMX was removed. Use services.postfix.settings.main.relayhost and put the hostname in angled brackets, if you need to turn off MX and SRV lookups." 1236 ) 1237 (lib.mkRemovedOptionModule [ "services" "postfix" "relayHost" ] 1238 - "services.postfix.relayHost was removed in favor of services.postfix.settings.main.relayhost, which now takes a list of host/port." 1239 ) 1240 (lib.mkRemovedOptionModule [ "services" "postfix" "relayPort" ] 1241 - "services.postfix.relayHost was removed in favor of services.postfix.settings.main.relayhost, which now takes a list of host/port." 1242 ) 1243 (lib.mkRemovedOptionModule [ "services" "postfix" "extraConfig" ] 1244 "services.postfix.extraConfig was replaced by the structured freeform service.postfix.settings.main option."
··· 1235 "services.postfix.lookupMX was removed. Use services.postfix.settings.main.relayhost and put the hostname in angled brackets, if you need to turn off MX and SRV lookups." 1236 ) 1237 (lib.mkRemovedOptionModule [ "services" "postfix" "relayHost" ] 1238 + "services.postfix.relayHost was removed in favor of services.postfix.settings.main.relayhost, which now takes a list of host:port." 1239 ) 1240 (lib.mkRemovedOptionModule [ "services" "postfix" "relayPort" ] 1241 + "services.postfix.relayPort was removed in favor of services.postfix.settings.main.relayhost, which now takes a list of host:port." 1242 ) 1243 (lib.mkRemovedOptionModule [ "services" "postfix" "extraConfig" ] 1244 "services.postfix.extraConfig was replaced by the structured freeform service.postfix.settings.main option."
+8 -2
pkgs/by-name/aw/awscli2/package.nix
··· 65 in 66 py.pkgs.buildPythonApplication rec { 67 pname = "awscli2"; 68 - version = "2.27.61"; # N.B: if you change this, check if overrides are still up-to-date 69 pyproject = true; 70 71 src = fetchFromGitHub { 72 owner = "aws"; 73 repo = "aws-cli"; 74 tag = version; 75 - hash = "sha256-2lcPqNrGAHvPPVZIQaDbI54sQQ7OsOiMxUx6qg6WeNU="; 76 }; 77 78 postPatch = '' ··· 158 # Disable slow tests (only run unit tests) 159 "tests/backends" 160 "tests/functional" 161 ]; 162 163 pythonImportsCheck = [
··· 65 in 66 py.pkgs.buildPythonApplication rec { 67 pname = "awscli2"; 68 + version = "2.28.1"; # N.B: if you change this, check if overrides are still up-to-date 69 pyproject = true; 70 71 src = fetchFromGitHub { 72 owner = "aws"; 73 repo = "aws-cli"; 74 tag = version; 75 + hash = "sha256-TpyjYnLTBPU83g6/h+BrX4hd4dUbZUvDyJ6m/3v38+A="; 76 }; 77 78 postPatch = '' ··· 158 # Disable slow tests (only run unit tests) 159 "tests/backends" 160 "tests/functional" 161 + ]; 162 + 163 + disabledTests = [ 164 + # Requires networking (socket binding not possible in sandbox) 165 + "test_is_socket" 166 + "test_is_special_file_warning" 167 ]; 168 169 pythonImportsCheck = [
+2 -2
pkgs/by-name/az/azure-cli/extensions-manual.nix
··· 83 84 containerapp = mkAzExtension rec { 85 pname = "containerapp"; 86 - version = "1.2.0b2"; 87 url = "https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-${version}-py2.py3-none-any.whl"; 88 - hash = "sha256-86+DfGC1Fm55u6JPl0II/qXWqLZTv4ANRkjgQgNkInk="; 89 description = "Microsoft Azure Command-Line Tools Containerapp Extension"; 90 propagatedBuildInputs = with python3Packages; [ 91 docker
··· 83 84 containerapp = mkAzExtension rec { 85 pname = "containerapp"; 86 + version = "1.2.0b3"; 87 url = "https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-${version}-py2.py3-none-any.whl"; 88 + hash = "sha256-UK7fbWI7NoW8sBo3OEafXX3DolFNQXhFDMHUoE1h/qA="; 89 description = "Microsoft Azure Command-Line Tools Containerapp Extension"; 90 propagatedBuildInputs = with python3Packages; [ 91 docker
+2
pkgs/by-name/bi/bind/package.nix
··· 52 nativeBuildInputs = [ 53 perl 54 pkg-config 55 removeReferencesTo 56 ]; 57 buildInputs = [ ··· 107 ''; 108 109 enableParallelBuilding = true; 110 111 doCheck = false; 112 # TODO: investigate failures; see this and linked discussions:
··· 52 nativeBuildInputs = [ 53 perl 54 pkg-config 55 + protobufc 56 removeReferencesTo 57 ]; 58 buildInputs = [ ··· 108 ''; 109 110 enableParallelBuilding = true; 111 + strictDeps = true; 112 113 doCheck = false; 114 # TODO: investigate failures; see this and linked discussions:
+3 -3
pkgs/by-name/ch/chirp/package.nix
··· 11 12 python3Packages.buildPythonApplication { 13 pname = "chirp"; 14 - version = "0.4.0-unstable-2025-07-25"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "kk7ds"; 19 repo = "chirp"; 20 - rev = "85e0655382b2c1564c387aa2fa5e21a444887ea1"; 21 - hash = "sha256-IrwKTJt8RXJKzZFQjrEYndQ5WmG52IiJnB+hrw89tfU="; 22 }; 23 24 nativeBuildInputs = [
··· 11 12 python3Packages.buildPythonApplication { 13 pname = "chirp"; 14 + version = "0.4.0-unstable-2025-08-04"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "kk7ds"; 19 repo = "chirp"; 20 + rev = "a8fb306f5627f2478d55541d21f7e9ed51363010"; 21 + hash = "sha256-SQWKHkIf9d23AKnJQv58XlTmuL07HRj6oS8LW4BM+7Y="; 22 }; 23 24 nativeBuildInputs = [
+3 -3
pkgs/by-name/co/cosmic-protocols/package.nix
··· 9 10 stdenv.mkDerivation { 11 pname = "cosmic-protocols"; 12 - version = "0-unstable-2025-06-24"; 13 14 src = fetchFromGitHub { 15 owner = "pop-os"; 16 repo = "cosmic-protocols"; 17 - rev = "4f053317cc9a0e776bc24610df91ff84dfd6cc7b"; 18 - hash = "sha256-p4xRATocwG/QZtjI6fj1CPc+3jqlqr1mwoqojFxfpFE="; 19 }; 20 21 makeFlags = [ "PREFIX=${placeholder "out"}" ];
··· 9 10 stdenv.mkDerivation { 11 pname = "cosmic-protocols"; 12 + version = "0-unstable-2025-08-04"; 13 14 src = fetchFromGitHub { 15 owner = "pop-os"; 16 repo = "cosmic-protocols"; 17 + rev = "5035f8c810bf734401e21e0a9625c7b7e0c73325"; 18 + hash = "sha256-FYfSVg7v7S8G1gHZ5puAqb2yZES81HK+KMu0819cQ8w="; 19 }; 20 21 makeFlags = [ "PREFIX=${placeholder "out"}" ];
+14 -7
pkgs/by-name/cr/crush/package.nix
··· 18 hash = "sha256-SjrkQFSjJrPNynARE92uKA53hkstIUBSvQbqcYSsnaM="; 19 }; 20 21 vendorHash = "sha256-aI3MSaQYUOLJxBxwCoVg13HpxK46q6ZITrw1osx5tiE="; 22 23 ldflags = [ 24 "-s" 25 - "-w" 26 "-X=github.com/charmbracelet/crush/internal/version.Version=${finalAttrs.version}" 27 ]; 28 29 - # rename TestMain to prevent it from running, as it panics in the sandbox. 30 - postPatch = '' 31 - sed -i 's/func TestMain/func DisabledTestMain/' internal/llm/provider/openai_test.go 32 - ''; 33 - 34 checkFlags = 35 let 36 # these tests fail in the sandbox ··· 42 in 43 [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; 44 45 - doInstallCheck = true; 46 nativeCheckInputs = [ writableTmpDirAsHomeHook ]; 47 nativeInstallCheckInputs = [ versionCheckHook ]; 48 49 updateScript = nix-update-script { }; 50 51 meta = { 52 description = "Glamourous AI coding agent for your favourite terminal"; 53 homepage = "https://github.com/charmbracelet/crush"; 54 license = lib.licenses.fsl11Mit; 55 maintainers = with lib.maintainers; [ x123 ]; 56 mainProgram = "crush";
··· 18 hash = "sha256-SjrkQFSjJrPNynARE92uKA53hkstIUBSvQbqcYSsnaM="; 19 }; 20 21 + # rename TestMain to prevent it from running, as it panics in the sandbox. 22 + postPatch = '' 23 + substituteInPlace internal/llm/provider/openai_test.go \ 24 + --replace-fail \ 25 + "func TestMain" \ 26 + "func DisabledTestMain" 27 + ''; 28 + 29 vendorHash = "sha256-aI3MSaQYUOLJxBxwCoVg13HpxK46q6ZITrw1osx5tiE="; 30 31 ldflags = [ 32 "-s" 33 "-X=github.com/charmbracelet/crush/internal/version.Version=${finalAttrs.version}" 34 ]; 35 36 checkFlags = 37 let 38 # these tests fail in the sandbox ··· 44 in 45 [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; 46 47 + __darwinAllowLocalNetworking = true; 48 + 49 nativeCheckInputs = [ writableTmpDirAsHomeHook ]; 50 + 51 nativeInstallCheckInputs = [ versionCheckHook ]; 52 + versionCheckProgramArg = "--version"; 53 + doInstallCheck = true; 54 55 updateScript = nix-update-script { }; 56 57 meta = { 58 description = "Glamourous AI coding agent for your favourite terminal"; 59 homepage = "https://github.com/charmbracelet/crush"; 60 + changelog = "https://github.com/charmbracelet/crush/releases/tag/v${finalAttrs.version}"; 61 license = lib.licenses.fsl11Mit; 62 maintainers = with lib.maintainers; [ x123 ]; 63 mainProgram = "crush";
+2 -2
pkgs/by-name/do/dotbot/package.nix
··· 6 7 python3Packages.buildPythonApplication rec { 8 pname = "dotbot"; 9 - version = "1.23.0"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "anishathalye"; 14 repo = "dotbot"; 15 tag = "v${version}"; 16 - hash = "sha256-Bv9nvS8DxmpMB5Bo4Sw2+rVbrnQIcnc/hQZiq0qeJxc="; 17 }; 18 19 preCheck = ''
··· 6 7 python3Packages.buildPythonApplication rec { 8 pname = "dotbot"; 9 + version = "1.23.1"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "anishathalye"; 14 repo = "dotbot"; 15 tag = "v${version}"; 16 + hash = "sha256-Yq6mpBUokt4Zi84xyA5bayW1WLXEUXFev2aDJ/q/Fgo="; 17 }; 18 19 preCheck = ''
+30 -12
pkgs/by-name/ex/exegol/package.nix
··· 1 { 2 - fetchPypi, 3 lib, 4 python3Packages, 5 xorg, 6 }: 7 python3Packages.buildPythonApplication rec { 8 pname = "exegol"; 9 - version = "4.3.11"; 10 pyproject = true; 11 12 - src = fetchPypi { 13 - inherit pname version; 14 - hash = "sha256-+LnZSFRW7EvG+cPwMStgO6qD4AjOGkLzCarXBrW3Aak="; 15 }; 16 17 build-system = with python3Packages; [ pdm-backend ]; ··· 19 pythonRelaxDeps = [ 20 "rich" 21 "argcomplete" 22 ]; 23 24 dependencies = 25 with python3Packages; 26 [ 27 - pyyaml 28 - gitpython 29 docker 30 requests 31 rich 32 - argcomplete 33 - tzlocal 34 ] 35 - ++ [ xorg.xhost ]; 36 37 doCheck = true; 38 ··· 49 stylish macOS users and corporate Windows pros to UNIX-like power users. 50 ''; 51 homepage = "https://github.com/ThePorgs/Exegol"; 52 - changelog = "https://github.com/ThePorgs/Exegol/releases/tag/${version}"; 53 - license = lib.licenses.gpl3Only; 54 mainProgram = "exegol"; 55 maintainers = with lib.maintainers; [ 56 _0b11stan
··· 1 { 2 lib, 3 + fetchFromGitHub, 4 python3Packages, 5 xorg, 6 }: 7 python3Packages.buildPythonApplication rec { 8 pname = "exegol"; 9 + version = "5.1.1"; 10 pyproject = true; 11 12 + src = fetchFromGitHub { 13 + owner = "ThePorgs"; 14 + repo = "Exegol"; 15 + tag = version; 16 + hash = "sha256-q84uWxVooQ+tFA2NhQ5N30h8LPhT+fJfxVmcpMzOQVk="; 17 }; 18 19 build-system = with python3Packages; [ pdm-backend ]; ··· 21 pythonRelaxDeps = [ 22 "rich" 23 "argcomplete" 24 + "supabase" 25 ]; 26 27 dependencies = 28 with python3Packages; 29 [ 30 + argcomplete 31 + cryptography 32 docker 33 + gitpython 34 + ifaddr 35 + pydantic 36 + pyjwt 37 + pyyaml 38 requests 39 rich 40 + supabase 41 ] 42 + ++ pyjwt.optional-dependencies.crypto 43 + ++ [ xorg.xhost ] 44 + ++ lib.optional (!stdenv.hostPlatform.isLinux) tzlocal; 45 46 doCheck = true; 47 ··· 58 stylish macOS users and corporate Windows pros to UNIX-like power users. 59 ''; 60 homepage = "https://github.com/ThePorgs/Exegol"; 61 + changelog = "https://github.com/ThePorgs/Exegol/releases/tag/${src.tag}"; 62 + license = with lib.licenses; [ 63 + gpl3Only 64 + { 65 + fullName = "Exegol Software License (ESL) - Version 1.0"; 66 + url = "https://docs.exegol.com/legal/software-license"; 67 + # Please use exegol4 if you prefer to avoid the unfree version of Exegol. 68 + free = false; 69 + redistributable = false; 70 + } 71 + ]; 72 mainProgram = "exegol"; 73 maintainers = with lib.maintainers; [ 74 _0b11stan
+60
pkgs/by-name/ex/exegol4/package.nix
···
··· 1 + { 2 + fetchPypi, 3 + lib, 4 + python3Packages, 5 + xorg, 6 + }: 7 + python3Packages.buildPythonApplication rec { 8 + pname = "exegol"; 9 + version = "4.3.11"; 10 + pyproject = true; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + hash = "sha256-+LnZSFRW7EvG+cPwMStgO6qD4AjOGkLzCarXBrW3Aak="; 15 + }; 16 + 17 + build-system = with python3Packages; [ pdm-backend ]; 18 + 19 + pythonRelaxDeps = [ 20 + "rich" 21 + "argcomplete" 22 + ]; 23 + 24 + dependencies = 25 + with python3Packages; 26 + [ 27 + pyyaml 28 + gitpython 29 + docker 30 + requests 31 + rich 32 + argcomplete 33 + tzlocal 34 + ] 35 + ++ [ xorg.xhost ]; 36 + 37 + doCheck = true; 38 + 39 + pythonImportsCheck = [ "exegol" ]; 40 + 41 + meta = { 42 + description = "Fully featured and community-driven hacking environment"; 43 + longDescription = '' 44 + Exegol is a community-driven hacking environment, powerful and yet 45 + simple enough to be used by anyone in day to day engagements. Exegol is 46 + the best solution to deploy powerful hacking environments securely, 47 + easily, professionally. Exegol fits pentesters, CTF players, bug bounty 48 + hunters, researchers, beginners and advanced users, defenders, from 49 + stylish macOS users and corporate Windows pros to UNIX-like power users. 50 + ''; 51 + homepage = "https://github.com/ThePorgs/Exegol"; 52 + changelog = "https://github.com/ThePorgs/Exegol/releases/tag/${version}"; 53 + license = lib.licenses.gpl3Only; 54 + mainProgram = "exegol"; 55 + maintainers = with lib.maintainers; [ 56 + _0b11stan 57 + charB66 58 + ]; 59 + }; 60 + }
+2 -2
pkgs/by-name/fi/filesender/package.nix
··· 6 }: 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "filesender"; 9 - version = "2.56"; 10 11 src = fetchFromGitHub { 12 owner = "filesender"; 13 repo = "filesender"; 14 tag = "filesender-${finalAttrs.version}"; 15 - hash = "sha256-nGmjhki3RKwpZXd90Nh2VAhwNFIZE0GSdKPjsRJEP0k="; 16 }; 17 18 patches = [
··· 6 }: 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "filesender"; 9 + version = "2.57"; 10 11 src = fetchFromGitHub { 12 owner = "filesender"; 13 repo = "filesender"; 14 tag = "filesender-${finalAttrs.version}"; 15 + hash = "sha256-I/9Y64jWm7QdQ1yhjCHkLfkKrzV6y0Rp+wkZbDP86fw="; 16 }; 17 18 patches = [
+2 -2
pkgs/by-name/fl/fleet/package.nix
··· 7 8 buildGoModule (finalAttrs: { 9 pname = "fleet"; 10 - version = "4.71.0"; 11 12 src = fetchFromGitHub { 13 owner = "fleetdm"; 14 repo = "fleet"; 15 tag = "fleet-v${finalAttrs.version}"; 16 - hash = "sha256-nkSW3209rI3pNK6WTB0HSg5XVs6ZtKfEf8hP5OKMN/4="; 17 }; 18 vendorHash = "sha256-UOY9W2ULh2eNIfUmyU38nZCVWNTWIDTf7GBBkptrlTQ="; 19
··· 7 8 buildGoModule (finalAttrs: { 9 pname = "fleet"; 10 + version = "4.71.1"; 11 12 src = fetchFromGitHub { 13 owner = "fleetdm"; 14 repo = "fleet"; 15 tag = "fleet-v${finalAttrs.version}"; 16 + hash = "sha256-lEgSgwygLrpkR0Kb6U/+nPRvKD5rMDvl7lxSP9Mf92k="; 17 }; 18 vendorHash = "sha256-UOY9W2ULh2eNIfUmyU38nZCVWNTWIDTf7GBBkptrlTQ="; 19
+3 -3
pkgs/by-name/fo/forgejo-runner/package.nix
··· 41 in 42 buildGoModule rec { 43 pname = "forgejo-runner"; 44 - version = "9.0.1"; 45 46 src = fetchFromGitea { 47 domain = "code.forgejo.org"; 48 owner = "forgejo"; 49 repo = "runner"; 50 rev = "v${version}"; 51 - hash = "sha256-3VurTHOM7FMRJzmQ5tBmW4E0mw7hePCnff0vhxPsKfE="; 52 }; 53 54 vendorHash = "sha256-7R42Aa04wCba90xLTX2p6oNX58OpfDDKegqwDw3Ycbk="; ··· 93 meta = with lib; { 94 description = "Runner for Forgejo based on act"; 95 homepage = "https://code.forgejo.org/forgejo/runner"; 96 - changelog = "https://code.forgejo.org/forgejo/runner/src/tag/${src.rev}/RELEASE-NOTES.md"; 97 license = licenses.mit; 98 maintainers = with maintainers; [ 99 adamcstephens
··· 41 in 42 buildGoModule rec { 43 pname = "forgejo-runner"; 44 + version = "9.0.2"; 45 46 src = fetchFromGitea { 47 domain = "code.forgejo.org"; 48 owner = "forgejo"; 49 repo = "runner"; 50 rev = "v${version}"; 51 + hash = "sha256-UjYi7+UAKvdz5FuElYGLfTYQD/E0vS1TJkUyPfUq7YA="; 52 }; 53 54 vendorHash = "sha256-7R42Aa04wCba90xLTX2p6oNX58OpfDDKegqwDw3Ycbk="; ··· 93 meta = with lib; { 94 description = "Runner for Forgejo based on act"; 95 homepage = "https://code.forgejo.org/forgejo/runner"; 96 + changelog = "https://code.forgejo.org/forgejo/runner/releases/tag/${src.rev}"; 97 license = licenses.mit; 98 maintainers = with maintainers; [ 99 adamcstephens
+3 -3
pkgs/by-name/gr/gren/generated-backend-package.nix
··· 29 }: 30 mkDerivation { 31 pname = "gren"; 32 - version = "0.6.1"; 33 src = fetchgit { 34 url = "https://github.com/gren-lang/compiler.git"; 35 - sha256 = "0h7mm3y62l3j190sd25db4bifp65xmyc4rc16jhyphp6yzyjcpcl"; 36 - rev = "b54f0343c8015c777e4fbb74e843181e6f3cb214"; 37 fetchSubmodules = true; 38 }; 39 isLibrary = false;
··· 29 }: 30 mkDerivation { 31 pname = "gren"; 32 + version = "0.6.2"; 33 src = fetchgit { 34 url = "https://github.com/gren-lang/compiler.git"; 35 + sha256 = "1c0fcdc87nmm26hk6c1k4djdk7ld9488fldx8mhwayqfsx0v2d3x"; 36 + rev = "0343e77040f97864e5eb9790dd9ba0bb5fe1d6ee"; 37 fetchSubmodules = true; 38 }; 39 isLibrary = false;
+4 -3
pkgs/by-name/gr/gren/package.nix
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "gren"; 14 - version = "0.6.1"; 15 16 src = fetchFromGitHub { 17 owner = "gren-lang"; 18 repo = "compiler"; 19 tag = finalAttrs.version; 20 - hash = "sha256-lF0m/ffmwuuhNIFlwnztxVwXF1mtiKZBCnJQYfyo9UA="; 21 }; 22 23 buildInputs = [ ··· 41 runHook postInstall 42 ''; 43 44 nativeInstallCheckInputs = [ versionCheckHook ]; 45 versionCheckProgram = "${placeholder "out"}/bin/gren"; 46 versionCheckProgramArg = "--version"; ··· 51 }; 52 53 meta = { 54 - description = "Compiler for the Gren programming language"; 55 homepage = "https://gren-lang.org"; 56 license = lib.licenses.bsd3; 57 mainProgram = "gren";
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "gren"; 14 + version = "0.6.2"; 15 16 src = fetchFromGitHub { 17 owner = "gren-lang"; 18 repo = "compiler"; 19 tag = finalAttrs.version; 20 + hash = "sha256-fTSxQdcOe8VhRb1RhxBJjZ7ZZCMzMDOhEbXag1hjDrA="; 21 }; 22 23 buildInputs = [ ··· 41 runHook postInstall 42 ''; 43 44 + doInstallCheck = true; 45 nativeInstallCheckInputs = [ versionCheckHook ]; 46 versionCheckProgram = "${placeholder "out"}/bin/gren"; 47 versionCheckProgramArg = "--version"; ··· 52 }; 53 54 meta = { 55 + description = "Programming language for simple and correct applications"; 56 homepage = "https://gren-lang.org"; 57 license = lib.licenses.bsd3; 58 mainProgram = "gren";
+5 -1
pkgs/by-name/gr/gren/update.sh
··· 1 #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p cabal2nix curl jq nixfmt-rfc-style 3 4 set -euo pipefail 5 ··· 22 nixfmt "${backend_derivation_file}" 23 24 echo 'Finished backend generation.'
··· 1 #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p cabal2nix curl jq nix-update nixfmt-rfc-style 3 4 set -euo pipefail 5 ··· 22 nixfmt "${backend_derivation_file}" 23 24 echo 'Finished backend generation.' 25 + 26 + echo "Updating frontend to version ${latest_version}" 27 + 28 + nix-update gren --version "${latest_version}"
+3 -3
pkgs/by-name/he/heroic-unwrapped/package.nix
··· 23 in 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "heroic-unwrapped"; 26 - version = "2.18.0"; 27 28 src = fetchFromGitHub { 29 owner = "Heroic-Games-Launcher"; 30 repo = "HeroicGamesLauncher"; 31 tag = "v${finalAttrs.version}"; 32 - hash = "sha256-DrE1gwer1pozTPWSzc5PpTWacDHhdNk/o6pA62E0uPA="; 33 }; 34 35 pnpmDeps = pnpm_10.fetchDeps { 36 inherit (finalAttrs) pname version src; 37 fetcherVersion = 1; 38 - hash = "sha256-VaPWB5nUvmnGW6gkW2FwoqcHk/rMfObuhR7RwsyNghk="; 39 }; 40 41 nativeBuildInputs = [
··· 23 in 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "heroic-unwrapped"; 26 + version = "2.18.1"; 27 28 src = fetchFromGitHub { 29 owner = "Heroic-Games-Launcher"; 30 repo = "HeroicGamesLauncher"; 31 tag = "v${finalAttrs.version}"; 32 + hash = "sha256-x792VA4PZleqUUgarh59JxJVXrvT95/rINYk8t9i3X0="; 33 }; 34 35 pnpmDeps = pnpm_10.fetchDeps { 36 inherit (finalAttrs) pname version src; 37 fetcherVersion = 1; 38 + hash = "sha256-F8H0eYltIJ0S8AX+2S3cR+v8dvePw09VWToVOLM8qII="; 39 }; 40 41 nativeBuildInputs = [
+5 -5
pkgs/by-name/js/jsonschema-cli/package.nix
··· 6 nix-update-script, 7 }: 8 9 - rustPlatform.buildRustPackage rec { 10 pname = "jsonschema-cli"; 11 version = "0.32.0"; 12 13 src = fetchCrate { 14 - inherit pname version; 15 hash = "sha256-ZcavZSHf2eT65f7HbtZmD2mYUtrXEL/l1opXCvdn1O0="; 16 }; 17 ··· 21 versionCheckHook 22 ]; 23 doInstallCheck = true; 24 - versionCheckProgram = "${placeholder "out"}/bin/${meta.mainProgram}"; 25 versionCheckProgramArg = "--version"; 26 27 passthru.updateScript = nix-update-script { }; ··· 29 meta = { 30 description = "Fast command-line tool for JSON Schema validation"; 31 homepage = "https://github.com/Stranger6667/jsonschema"; 32 - changelog = "https://github.com/Stranger6667/jsonschema/releases/tag/rust-v${version}"; 33 license = lib.licenses.mit; 34 maintainers = with lib.maintainers; [ 35 kachick 36 ]; 37 mainProgram = "jsonschema-cli"; 38 }; 39 - }
··· 6 nix-update-script, 7 }: 8 9 + rustPlatform.buildRustPackage (finalAttrs: { 10 pname = "jsonschema-cli"; 11 version = "0.32.0"; 12 13 src = fetchCrate { 14 + pname = "jsonschema-cli"; 15 + inherit (finalAttrs) version; 16 hash = "sha256-ZcavZSHf2eT65f7HbtZmD2mYUtrXEL/l1opXCvdn1O0="; 17 }; 18 ··· 22 versionCheckHook 23 ]; 24 doInstallCheck = true; 25 versionCheckProgramArg = "--version"; 26 27 passthru.updateScript = nix-update-script { }; ··· 29 meta = { 30 description = "Fast command-line tool for JSON Schema validation"; 31 homepage = "https://github.com/Stranger6667/jsonschema"; 32 + changelog = "https://github.com/Stranger6667/jsonschema/releases/tag/rust-v${finalAttrs.version}"; 33 license = lib.licenses.mit; 34 maintainers = with lib.maintainers; [ 35 kachick 36 ]; 37 mainProgram = "jsonschema-cli"; 38 }; 39 + })
+3 -3
pkgs/by-name/ma/matrix-gtk-theme/package.nix
··· 70 stdenvNoCC.mkDerivation 71 { 72 inherit pname; 73 - version = "0-unstable-2025-05-06"; 74 75 src = fetchFromGitHub { 76 owner = "D3vil0p3r"; 77 repo = "Matrix-GTK-Theme"; 78 - rev = "ef8a4e2e5e2b42c5ac1d649e88e40cba420321ca"; 79 - hash = "sha256-H/MKwZ5IdRekoCKtw3hHOUke8fKU4hdBLT11Lzn7c7I="; 80 }; 81 82 propagatedUserEnvPkgs = [ gtk-engine-murrine ];
··· 70 stdenvNoCC.mkDerivation 71 { 72 inherit pname; 73 + version = "0-unstable-2025-07-28"; 74 75 src = fetchFromGitHub { 76 owner = "D3vil0p3r"; 77 repo = "Matrix-GTK-Theme"; 78 + rev = "fe8152fff81630efca6dedefe4b7f766fb2700f9"; 79 + hash = "sha256-maGRPw9qeKTy5JzDvrQIYe2zi4plhDu4NgjevizTAEE="; 80 }; 81 82 propagatedUserEnvPkgs = [ gtk-engine-murrine ];
+3 -3
pkgs/by-name/ma/matrix-synapse-unwrapped/package.nix
··· 18 in 19 python3.pkgs.buildPythonApplication rec { 20 pname = "matrix-synapse"; 21 - version = "1.134.0"; 22 format = "pyproject"; 23 24 src = fetchFromGitHub { 25 owner = "element-hq"; 26 repo = "synapse"; 27 rev = "v${version}"; 28 - hash = "sha256-q7+yVKFzyu8ccuroZsTSMRRKMwmr3TDojtXNx4bChTE"; 29 }; 30 31 patches = [ ··· 39 40 cargoDeps = rustPlatform.fetchCargoVendor { 41 inherit pname version src; 42 - hash = "sha256-BfLj+cqS6zpX2qLb+Rur4cy7CyPH2KzdXaTXpNK20DM="; 43 }; 44 45 postPatch = ''
··· 18 in 19 python3.pkgs.buildPythonApplication rec { 20 pname = "matrix-synapse"; 21 + version = "1.135.0"; 22 format = "pyproject"; 23 24 src = fetchFromGitHub { 25 owner = "element-hq"; 26 repo = "synapse"; 27 rev = "v${version}"; 28 + hash = "sha256-ygLWjI6HzBMTPDhEmf1rT18UhoRekzpG8DkeZXo2dts="; 29 }; 30 31 patches = [ ··· 39 40 cargoDeps = rustPlatform.fetchCargoVendor { 41 inherit pname version src; 42 + hash = "sha256-4J92s6cSgsEIYQpbU6OOLI/USIJX2Gc7UdEHgWQgmXc="; 43 }; 44 45 postPatch = ''
+2 -2
pkgs/by-name/ni/nix-update/package.nix
··· 11 12 python3Packages.buildPythonApplication rec { 13 pname = "nix-update"; 14 - version = "1.11.0"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "Mic92"; 19 repo = "nix-update"; 20 tag = version; 21 - hash = "sha256-G5YehePEMhTgxCnLp8Dg+bDHvOe+QltlCkQHVwMtYx0="; 22 }; 23 24 build-system = [ python3Packages.setuptools ];
··· 11 12 python3Packages.buildPythonApplication rec { 13 pname = "nix-update"; 14 + version = "1.12.0"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "Mic92"; 19 repo = "nix-update"; 20 tag = version; 21 + hash = "sha256-oibBkZ7JxVVJSnabHGB0XNwJiYJiAdfUhp7hxTv8ArY="; 22 }; 23 24 build-system = [ python3Packages.setuptools ];
-5
pkgs/by-name/op/openmolcas/package.nix
··· 48 nevpt2Src = stdenv.mkDerivation { 49 pname = "nevpt2-src"; 50 version = "unstable"; 51 - phases = [ 52 - "unpackPhase" 53 - "patchPhase" 54 - "installPhase" 55 - ]; 56 src = fetchFromGitHub { 57 owner = "qcscine"; 58 repo = "nevpt2";
··· 48 nevpt2Src = stdenv.mkDerivation { 49 pname = "nevpt2-src"; 50 version = "unstable"; 51 src = fetchFromGitHub { 52 owner = "qcscine"; 53 repo = "nevpt2";
+10 -7
pkgs/by-name/ro/rofi-bluetooth/package.nix
··· 9 10 stdenv.mkDerivation { 11 pname = "rofi-bluetooth"; 12 - version = "0-unstable-2023-02-03"; 13 14 src = fetchFromGitHub { 15 owner = "nickclyde"; 16 repo = "rofi-bluetooth"; 17 # https://github.com/nickclyde/rofi-bluetooth/issues/19 18 - rev = "9d91c048ff129819f4c6e9e48a17bd54343bbffb"; 19 - sha256 = "sha256-1Xe3QFThIvJDCUznDP5ZBzwZEMuqmxpDIV+BcVvQDG8="; 20 }; 21 22 nativeBuildInputs = [ makeWrapper ]; ··· 37 runHook postInstall 38 ''; 39 40 - meta = with lib; { 41 description = "Rofi-based interface to connect to bluetooth devices and display status info"; 42 homepage = "https://github.com/nickclyde/rofi-bluetooth"; 43 - license = licenses.gpl3Only; 44 - maintainers = with maintainers; [ MoritzBoehme ]; 45 mainProgram = "rofi-bluetooth"; 46 - platforms = platforms.linux; 47 }; 48 }
··· 9 10 stdenv.mkDerivation { 11 pname = "rofi-bluetooth"; 12 + version = "0-unstable-2025-04-14"; 13 14 src = fetchFromGitHub { 15 owner = "nickclyde"; 16 repo = "rofi-bluetooth"; 17 # https://github.com/nickclyde/rofi-bluetooth/issues/19 18 + rev = "0cca4d4aa1c82c9373ce5da781d73683a29484c6"; 19 + hash = "sha256-ggYoCWRuCi1WKcwb+0zVwq3WvSqJQBitI+/XTpOc6uw="; 20 }; 21 22 nativeBuildInputs = [ makeWrapper ]; ··· 37 runHook postInstall 38 ''; 39 40 + meta = { 41 description = "Rofi-based interface to connect to bluetooth devices and display status info"; 42 homepage = "https://github.com/nickclyde/rofi-bluetooth"; 43 + license = lib.licenses.gpl3Only; 44 + maintainers = with lib.maintainers; [ 45 + MoritzBoehme 46 + iamanaws 47 + ]; 48 mainProgram = "rofi-bluetooth"; 49 + platforms = lib.platforms.linux; 50 }; 51 }
+2
pkgs/by-name/ru/ruff/package.nix
··· 81 tests = lib.optionalAttrs stdenv.hostPlatform.isLinux { 82 nixos-test-driver-busybox = nixosTests.nixos-test-driver.busybox; 83 }; 84 updateScript = nix-update-script { }; 85 }; 86
··· 81 tests = lib.optionalAttrs stdenv.hostPlatform.isLinux { 82 nixos-test-driver-busybox = nixosTests.nixos-test-driver.busybox; 83 }; 84 + # Updating `ruff` needs to be done on staging due to NixOS tests. Disabling r-ryantm update bot: 85 + # nixpkgs-update: no auto update 86 updateScript = nix-update-script { }; 87 }; 88
+3 -4
pkgs/by-name/sc/scipopt-gcg/package.nix
··· 1 { 2 lib, 3 - pkgs, 4 stdenv, 5 fetchFromGitHub, 6 cmake, ··· 14 15 stdenv.mkDerivation rec { 16 pname = "scipopt-gcg"; 17 - version = "371"; 18 19 # To correlate scipVersion and version, check: https://scipopt.org/#news 20 - scipVersion = "9.2.1"; 21 22 src = fetchFromGitHub { 23 owner = "scipopt"; 24 repo = "gcg"; 25 tag = "v${version}"; 26 - hash = "sha256-+rD8tGE49Irg9xZTD3Ay87ISSeRI4kbBpCj5ppyENbo="; 27 }; 28 29 nativeBuildInputs = [
··· 1 { 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 cmake, ··· 13 14 stdenv.mkDerivation rec { 15 pname = "scipopt-gcg"; 16 + version = "372"; 17 18 # To correlate scipVersion and version, check: https://scipopt.org/#news 19 + scipVersion = "9.2.3"; 20 21 src = fetchFromGitHub { 22 owner = "scipopt"; 23 repo = "gcg"; 24 tag = "v${version}"; 25 + hash = "sha256-Sx0ZSca7XBT4GqxWt3bzelaXlI7kZCJo+by22mtTFhA="; 26 }; 27 28 nativeBuildInputs = [
+1 -1
pkgs/by-name/sc/scipopt-papilo/package.nix
··· 15 version = "2.4.3"; 16 17 # To correlate scipVersion and version, check: https://scipopt.org/#news 18 - scipVersion = "9.2.2"; 19 20 src = fetchFromGitHub { 21 owner = "scipopt";
··· 15 version = "2.4.3"; 16 17 # To correlate scipVersion and version, check: https://scipopt.org/#news 18 + scipVersion = "9.2.3"; 19 20 src = fetchFromGitHub { 21 owner = "scipopt";
+1 -1
pkgs/by-name/sc/scipopt-ug/package.nix
··· 13 version = "1.0.0-beta6"; 14 15 # To correlate scipVersion and version, check: https://scipopt.org/#news 16 - scipVersion = "9.2.2"; 17 18 # Take the SCIPOptSuite source since no other source exists publicly. 19 src = fetchzip {
··· 13 version = "1.0.0-beta6"; 14 15 # To correlate scipVersion and version, check: https://scipopt.org/#news 16 + scipVersion = "9.2.3"; 17 18 # Take the SCIPOptSuite source since no other source exists publicly. 19 src = fetchzip {
+1 -1
pkgs/by-name/sc/scipopt-zimpl/package.nix
··· 14 version = "362"; 15 16 # To correlate scipVersion and version, check: https://scipopt.org/#news 17 - scipVersion = "9.2.2"; 18 19 src = fetchFromGitHub { 20 owner = "scipopt";
··· 14 version = "362"; 15 16 # To correlate scipVersion and version, check: https://scipopt.org/#news 17 + scipVersion = "9.2.3"; 18 19 src = fetchFromGitHub { 20 owner = "scipopt";
+2 -2
pkgs/by-name/sk/skopeo/package.nix
··· 19 20 buildGoModule rec { 21 pname = "skopeo"; 22 - version = "1.19.0"; 23 24 src = fetchFromGitHub { 25 rev = "v${version}"; 26 owner = "containers"; 27 repo = "skopeo"; 28 - hash = "sha256-Xi3M8M8UukxwWXNTnbFLA8RIWa6CHs84PjrOvtJEl78="; 29 }; 30 31 outputs = [
··· 19 20 buildGoModule rec { 21 pname = "skopeo"; 22 + version = "1.20.0"; 23 24 src = fetchFromGitHub { 25 rev = "v${version}"; 26 owner = "containers"; 27 repo = "skopeo"; 28 + hash = "sha256-uw41kaIljz9Y378rX2BK0W/ZVUx8IjlIBqYHDuLgZpA="; 29 }; 30 31 outputs = [
+17 -7
pkgs/by-name/sl/slacky/package.nix
··· 9 }: 10 buildNpmPackage (finalAttrs: { 11 pname = "slacky"; 12 - version = "0.0.5"; 13 14 src = fetchFromGitHub { 15 owner = "andirsun"; 16 repo = "Slacky"; 17 tag = "v${finalAttrs.version}"; 18 - hash = "sha256-nDxmzZqi7xEe4hnY6iXJg+613lSKElWxvF3w8bRDW90="; 19 }; 20 21 - npmDepsHash = "sha256-9+4cxeQw2Elug+xIgzNvpaSMgDVlBFz/+TW1jJwDm40="; 22 23 - npmPackFlags = [ "--ignore-scripts" ]; 24 25 nativeBuildInputs = [ 26 - electron 27 copyDesktopItems 28 ]; 29 ··· 32 postInstall = '' 33 mkdir -p $out/share/icons 34 ln -s $out/lib/node_modules/slacky/build/icons/icon.png $out/share/icons/slacky.png 35 - makeWrapper ${electron}/bin/electron $out/bin/slacky \ 36 --add-flags $out/lib/node_modules/slacky/ 37 ''; 38 ··· 61 changelog = "https://github.com/andirsun/Slacky/releases/tag/v${finalAttrs.version}"; 62 license = lib.licenses.mit; 63 maintainers = with lib.maintainers; [ awwpotato ]; 64 - platforms = [ "aarch64-linux" ]; 65 mainProgram = "slacky"; 66 }; 67 })
··· 9 }: 10 buildNpmPackage (finalAttrs: { 11 pname = "slacky"; 12 + version = "0.0.6"; 13 14 src = fetchFromGitHub { 15 owner = "andirsun"; 16 repo = "Slacky"; 17 tag = "v${finalAttrs.version}"; 18 + hash = "sha256-70mexW+8+0hvVr2PYGtQuBiTh6xo2WFDqLzeCZilgaE="; 19 }; 20 21 + npmDepsHash = "sha256-Vqpg+j2mIv5XKzX//ptt9gT+SWPXpVSKSCM+E5cmuCQ="; 22 23 + npmPackFlags = [ 24 + "--ignore-scripts" 25 + ]; 26 + 27 + makeCacheWritable = true; 28 + 29 + npmFlags = [ 30 + "--legacy-peer-deps" 31 + ]; 32 + 33 + strictDeps = true; 34 35 nativeBuildInputs = [ 36 copyDesktopItems 37 ]; 38 ··· 41 postInstall = '' 42 mkdir -p $out/share/icons 43 ln -s $out/lib/node_modules/slacky/build/icons/icon.png $out/share/icons/slacky.png 44 + makeWrapper ${lib.getExe electron} $out/bin/slacky \ 45 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}" \ 46 --add-flags $out/lib/node_modules/slacky/ 47 ''; 48 ··· 71 changelog = "https://github.com/andirsun/Slacky/releases/tag/v${finalAttrs.version}"; 72 license = lib.licenses.mit; 73 maintainers = with lib.maintainers; [ awwpotato ]; 74 + platforms = lib.platforms.linux; 75 mainProgram = "slacky"; 76 }; 77 })
+2 -2
pkgs/by-name/tr/trealla/package.nix
··· 23 ]; 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "trealla"; 26 - version = "2.79.2"; 27 28 src = fetchFromGitHub { 29 owner = "trealla-prolog"; 30 repo = "trealla"; 31 rev = "v${finalAttrs.version}"; 32 - hash = "sha256-ZbGxluQQi308UN4cdc7kRZq3Vbh+Deh3oUeViefIHX4="; 33 }; 34 35 postPatch = ''
··· 23 ]; 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "trealla"; 26 + version = "2.80.8"; 27 28 src = fetchFromGitHub { 29 owner = "trealla-prolog"; 30 repo = "trealla"; 31 rev = "v${finalAttrs.version}"; 32 + hash = "sha256-ssOytMvL8Qtc8F2e7Rcd1HwllKCtncutFNFl5df2DoU="; 33 }; 34 35 postPatch = ''
+3
pkgs/by-name/uv/uv/package.nix
··· 61 62 passthru = { 63 tests.uv-python = python3Packages.uv; 64 updateScript = nix-update-script { }; 65 }; 66
··· 61 62 passthru = { 63 tests.uv-python = python3Packages.uv; 64 + 65 + # Updating `uv` needs to be done on staging. Disabling r-ryantm update bot: 66 + # nixpkgs-update: no auto update 67 updateScript = nix-update-script { }; 68 }; 69
+2 -2
pkgs/by-name/vi/victoriametrics/package.nix
··· 13 14 buildGoModule (finalAttrs: { 15 pname = "VictoriaMetrics"; 16 - version = "1.122.0"; 17 18 src = fetchFromGitHub { 19 owner = "VictoriaMetrics"; 20 repo = "VictoriaMetrics"; 21 tag = "v${finalAttrs.version}"; 22 - hash = "sha256-CpxnCW4+hsc3SQZXMI0pkPnKPvh1GTvCmhg5NkSZbk4="; 23 }; 24 25 vendorHash = null;
··· 13 14 buildGoModule (finalAttrs: { 15 pname = "VictoriaMetrics"; 16 + version = "1.123.0"; 17 18 src = fetchFromGitHub { 19 owner = "VictoriaMetrics"; 20 repo = "VictoriaMetrics"; 21 tag = "v${finalAttrs.version}"; 22 + hash = "sha256-GUVRMlF94BaZSVfz4Z+IBSpf6WuA5o1WQQmeZAqKZ1g="; 23 }; 24 25 vendorHash = null;
+2 -2
pkgs/by-name/xg/xgboost/package.nix
··· 48 # in \ 49 # rWrapper.override{ packages = [ xgb ]; }" 50 pname = lib.optionalString rLibrary "r-" + pnameBase; 51 - version = "3.0.2"; 52 53 src = fetchFromGitHub { 54 owner = "dmlc"; 55 repo = pnameBase; 56 tag = "v${version}"; 57 fetchSubmodules = true; 58 - hash = "sha256-8mj8uw7bbwhRaL0JZf9L9//a+Re2AwbL0e7Oiw/BqIA="; 59 }; 60 61 nativeBuildInputs = [
··· 48 # in \ 49 # rWrapper.override{ packages = [ xgb ]; }" 50 pname = lib.optionalString rLibrary "r-" + pnameBase; 51 + version = "3.0.3"; 52 53 src = fetchFromGitHub { 54 owner = "dmlc"; 55 repo = pnameBase; 56 tag = "v${version}"; 57 fetchSubmodules = true; 58 + hash = "sha256-UXYefQMb1xwwH5Jv8FT4rVbXP7xo+8Ya9wFhgMkm/rI="; 59 }; 60 61 nativeBuildInputs = [
+3 -3
pkgs/by-name/xr/xremap/package.nix
··· 6 }: 7 let 8 pname = "xremap"; 9 - version = "0.10.13"; 10 11 src = fetchFromGitHub { 12 owner = "xremap"; 13 repo = "xremap"; 14 tag = "v${version}"; 15 - hash = "sha256-yRYffVAqSriU3AebfL1JFIKP9gUSTq5OC8CyyBTx9KQ="; 16 }; 17 18 - cargoHash = "sha256-m7K47XjOO5MoCFTXYNovXm8GI2r66+UKvLV5aoCZIH0="; 19 20 buildXremap = 21 {
··· 6 }: 7 let 8 pname = "xremap"; 9 + version = "0.10.14"; 10 11 src = fetchFromGitHub { 12 owner = "xremap"; 13 repo = "xremap"; 14 tag = "v${version}"; 15 + hash = "sha256-7bkLn8cGDxUjy9rMcGmgrzm1YGouScQEmQMlg1k+HCY="; 16 }; 17 18 + cargoHash = "sha256-CmlwXmQDqIr2BZrl3/uwTarRV/xGof+2mavAVUejiZE="; 19 20 buildXremap = 21 {
+3 -3
pkgs/by-name/ze/zellij/package.nix
··· 15 16 rustPlatform.buildRustPackage (finalAttrs: { 17 pname = "zellij"; 18 - version = "0.42.2"; 19 20 src = fetchFromGitHub { 21 owner = "zellij-org"; 22 repo = "zellij"; 23 tag = "v${finalAttrs.version}"; 24 - hash = "sha256-O7BZlPSBWy+q349NYCUsw4Rb5X3xyl5Ar+a/uQPQhZY="; 25 }; 26 27 # Remove the `vendored_curl` feature in order to link against the libcurl from nixpkgs instead of ··· 31 --replace-fail ', "vendored_curl"' "" 32 ''; 33 34 - cargoHash = "sha256-Vo3bshaHjy2F2WFGgaIDEFFAh0e5VPp2G4fETgIH484="; 35 36 env.OPENSSL_NO_VENDOR = 1; 37
··· 15 16 rustPlatform.buildRustPackage (finalAttrs: { 17 pname = "zellij"; 18 + version = "0.43.0"; 19 20 src = fetchFromGitHub { 21 owner = "zellij-org"; 22 repo = "zellij"; 23 tag = "v${finalAttrs.version}"; 24 + hash = "sha256-VlK9ONyNQAlRqLQM62ZDCv/efJbj66DgM0P9DNhvRvk="; 25 }; 26 27 # Remove the `vendored_curl` feature in order to link against the libcurl from nixpkgs instead of ··· 31 --replace-fail ', "vendored_curl"' "" 32 ''; 33 34 + cargoHash = "sha256-P4VabkEFBvj2YkkhXqH/JZp3m3WMKcr0qUMhdorEm1Q="; 35 36 env.OPENSSL_NO_VENDOR = 1; 37
+2 -2
pkgs/development/libraries/eccodes/default.nix
··· 18 19 stdenv.mkDerivation rec { 20 pname = "eccodes"; 21 - version = "2.41.0"; 22 23 src = fetchurl { 24 url = "https://confluence.ecmwf.int/download/attachments/45757960/eccodes-${version}-Source.tar.gz"; 25 - hash = "sha256-oUZ4QuEe1/YqL1zBmC4E7sYjmPSWLmugOs52RvMs8nA="; 26 }; 27 28 postPatch = ''
··· 18 19 stdenv.mkDerivation rec { 20 pname = "eccodes"; 21 + version = "2.42.0"; 22 23 src = fetchurl { 24 url = "https://confluence.ecmwf.int/download/attachments/45757960/eccodes-${version}-Source.tar.gz"; 25 + hash = "sha256-YDcbNXywEd7lRtsuq6zlt+J/D4fT6kpa3eeJE3GzwSg="; 26 }; 27 28 postPatch = ''
+31
pkgs/development/ocaml-modules/logs-syslog/default.nix
···
··· 1 + { 2 + lib, 3 + fetchurl, 4 + buildDunePackage, 5 + logs, 6 + syslog-message, 7 + ptime, 8 + version ? "0.5.0", 9 + }: 10 + 11 + buildDunePackage { 12 + pname = "logs-syslog"; 13 + inherit version; 14 + src = fetchurl { 15 + url = "https://github.com/hannesm/logs-syslog/releases/download/v${version}/logs-syslog-${version}.tbz"; 16 + hash = "sha256-rx7mksA8y1BCEisNTQwSsJaet42eR7tZ3gYzvCqrYNQ="; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + logs 21 + syslog-message 22 + ptime 23 + ]; 24 + 25 + meta = { 26 + description = "Logs reporter to syslog (UDP/TCP/TLS)"; 27 + homepage = "https://github.com/hannesm/logs-syslog"; 28 + license = lib.licenses.isc; 29 + maintainers = [ lib.maintainers.vbgl ]; 30 + }; 31 + }
+3 -3
pkgs/development/python-modules/accelerate/default.nix
··· 33 34 buildPythonPackage rec { 35 pname = "accelerate"; 36 - version = "1.7.0"; 37 pyproject = true; 38 39 src = fetchFromGitHub { 40 owner = "huggingface"; 41 repo = "accelerate"; 42 tag = "v${version}"; 43 - hash = "sha256-nZoa2Uwd8cHl0H4LM8swHjce7HktpGdcD+6ykfoQ90M="; 44 }; 45 46 buildInputs = [ llvmPackages.openmp ]; ··· 172 meta = { 173 homepage = "https://huggingface.co/docs/accelerate"; 174 description = "Simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision"; 175 - changelog = "https://github.com/huggingface/accelerate/releases/tag/v${version}"; 176 license = lib.licenses.asl20; 177 maintainers = with lib.maintainers; [ bcdarwin ]; 178 mainProgram = "accelerate";
··· 33 34 buildPythonPackage rec { 35 pname = "accelerate"; 36 + version = "1.9.0"; 37 pyproject = true; 38 39 src = fetchFromGitHub { 40 owner = "huggingface"; 41 repo = "accelerate"; 42 tag = "v${version}"; 43 + hash = "sha256-h1XfBG7M8aAN9W09RgIowJ2vgWAjWbUnV1KBXa5aGJU="; 44 }; 45 46 buildInputs = [ llvmPackages.openmp ]; ··· 172 meta = { 173 homepage = "https://huggingface.co/docs/accelerate"; 174 description = "Simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision"; 175 + changelog = "https://github.com/huggingface/accelerate/releases/tag/${src.tag}"; 176 license = lib.licenses.asl20; 177 maintainers = with lib.maintainers; [ bcdarwin ]; 178 mainProgram = "accelerate";
+2 -2
pkgs/development/python-modules/airportsdata/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "airportsdata"; 12 - version = "20250523"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.9"; ··· 18 owner = "mborsetti"; 19 repo = "airportsdata"; 20 tag = "v${version}"; 21 - hash = "sha256-hqKyWyzBQgD9jB8PuflOsyZxSyU8geBVfBS/dgUsTAE="; 22 }; 23 24 build-system = [ setuptools ];
··· 9 10 buildPythonPackage rec { 11 pname = "airportsdata"; 12 + version = "20250706"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.9"; ··· 18 owner = "mborsetti"; 19 repo = "airportsdata"; 20 tag = "v${version}"; 21 + hash = "sha256-DINR1r+Gn88XB4EddNg04CNSifYlETRW0ptCX5w2ndM="; 22 }; 23 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/ansible/default.nix
··· 25 26 let 27 pname = "ansible"; 28 - version = "11.7.0"; 29 in 30 buildPythonPackage { 31 inherit pname version; ··· 35 36 src = fetchPypi { 37 inherit pname version; 38 - hash = "sha256-+d83xx1Af2W8ucXAbJkY4pfZ6nS1za9ZJsTJqp5E218="; 39 }; 40 41 # we make ansible-core depend on ansible, not the other way around,
··· 25 26 let 27 pname = "ansible"; 28 + version = "11.8.0"; 29 in 30 buildPythonPackage { 31 inherit pname version; ··· 35 36 src = fetchPypi { 37 inherit pname version; 38 + hash = "sha256-KOoDLHfzRLuOpNfTn5pdTpNebItgg2yMiii5z2ya2xo="; 39 }; 40 41 # we make ansible-core depend on ansible, not the other way around,
+2 -2
pkgs/development/python-modules/asana/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "asana"; 17 - version = "5.1.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 23 owner = "asana"; 24 repo = "python-asana"; 25 tag = "v${version}"; 26 - hash = "sha256-TYZi/cjwAHuluHpunfStlfPg0SSyaKKWtkJhTun/hQ0="; 27 }; 28 29 build-system = [ setuptools ];
··· 14 15 buildPythonPackage rec { 16 pname = "asana"; 17 + version = "5.2.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 23 owner = "asana"; 24 repo = "python-asana"; 25 tag = "v${version}"; 26 + hash = "sha256-wTA7y7hUyAxNe5xad34thmzTKhQDk/oGHDflxpQdOrY="; 27 }; 28 29 build-system = [ setuptools ];
+3 -3
pkgs/development/python-modules/bracex/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "bracex"; 12 - version = "2.5.post1"; 13 format = "pyproject"; 14 - disabled = pythonOlder "3.8"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - hash = "sha256-EsUJUkFb+nc9LZzLjnllG4zbHzGkL2CRuAT2uitKZrY="; 19 }; 20 21 nativeBuildInputs = [ hatchling ];
··· 9 10 buildPythonPackage rec { 11 pname = "bracex"; 12 + version = "2.6"; 13 format = "pyproject"; 14 + disabled = pythonOlder "3.9"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-mPE0fNd+Iu6NlnowrU4xCyM/d1Tb8x/z/Ot2FFukfcc="; 19 }; 20 21 nativeBuildInputs = [ hatchling ];
+2 -2
pkgs/development/python-modules/compliance-trestle/default.nix
··· 28 29 buildPythonPackage rec { 30 pname = "compliance-trestle"; 31 - version = "3.9.0"; 32 pyproject = true; 33 34 src = fetchFromGitHub { 35 owner = "oscal-compass"; 36 repo = "compliance-trestle"; 37 tag = "v${version}"; 38 - hash = "sha256-WWqrUfDlzpZAXtOlq3Uq8AmUOerUmMCr9KPjdjk4JHg="; 39 fetchSubmodules = true; 40 }; 41
··· 28 29 buildPythonPackage rec { 30 pname = "compliance-trestle"; 31 + version = "3.9.1"; 32 pyproject = true; 33 34 src = fetchFromGitHub { 35 owner = "oscal-compass"; 36 repo = "compliance-trestle"; 37 tag = "v${version}"; 38 + hash = "sha256-AJ1luN2X6Q4dp4fna14x6HgUw1uX4X87BXkVBPVIn9k="; 39 fetchSubmodules = true; 40 }; 41
+2 -2
pkgs/development/python-modules/diff-cover/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "diff-cover"; 23 - version = "9.3.2"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.9"; ··· 28 src = fetchPypi { 29 pname = "diff_cover"; 30 inherit version; 31 - hash = "sha256-Kpkjn7iWhlDaR5aKg0YHtreXFD5dBAXiTEWnG+WQdVs="; 32 }; 33 34 build-system = [ poetry-core ];
··· 20 21 buildPythonPackage rec { 22 pname = "diff-cover"; 23 + version = "9.6.0"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.9"; ··· 28 src = fetchPypi { 29 pname = "diff_cover"; 30 inherit version; 31 + hash = "sha256-deW8BW3Kpoxsh8n7TgfJ5g2u8VtujQNNVtLaniyEqHI="; 32 }; 33 34 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/google-cloud-compute/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-compute"; 17 - version = "1.31.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_compute"; 24 inherit version; 25 - hash = "sha256-SCX85iUIiCQdCym1jy961kkcCcyhTZOrey0/UIfRNLc="; 26 }; 27 28 build-system = [ setuptools ];
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-compute"; 17 + version = "1.33.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_compute"; 24 inherit version; 25 + hash = "sha256-D/xWv8qVg8L6XyticbZ1ak1vXNvv4mVkIHESlykuQu4="; 26 }; 27 28 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-dlp/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-dlp"; 18 - version = "3.30.0"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_dlp"; 25 inherit version; 26 - hash = "sha256-qTCw9C4ULzapSjGptsr5uFL4ThUpROTxsx2ICZCx6H0="; 27 }; 28 29 build-system = [ setuptools ];
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-dlp"; 18 + version = "3.31.0"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_dlp"; 25 inherit version; 26 + hash = "sha256-Vh3ik1Jel02F1m84o2PB0eVnySQGBGBqGBmPLSPFqhk="; 27 }; 28 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-pubsub/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "google-cloud-pubsub"; 23 - version = "2.30.0"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.7"; ··· 28 src = fetchPypi { 29 pname = "google_cloud_pubsub"; 30 inherit version; 31 - hash = "sha256-Jpde1yjSIJR59PsmZ+OzvXDedgWrrfSzAcZRw57YMEI="; 32 }; 33 34 build-system = [ setuptools ];
··· 20 21 buildPythonPackage rec { 22 pname = "google-cloud-pubsub"; 23 + version = "2.31.1"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.7"; ··· 28 src = fetchPypi { 29 pname = "google_cloud_pubsub"; 30 inherit version; 31 + hash = "sha256-9CFPaS2kNa/N+0HnfPqWIjjbluSkumRjeqpxBELZxTI="; 32 }; 33 34 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-securitycenter/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-securitycenter"; 17 - version = "1.38.1"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_securitycenter"; 24 inherit version; 25 - hash = "sha256-XsR+gNtFCWhe0PEmaS8lIgGl0+ri7MR/omK+bch4Too="; 26 }; 27 28 build-system = [ setuptools ];
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-securitycenter"; 17 + version = "1.39.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_securitycenter"; 24 inherit version; 25 + hash = "sha256-F3yEa7DTppVr2X9ufWVOQ/kkeytGKZmeOY661gUlzP8="; 26 }; 27 28 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/gphoto2/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "gphoto2"; 14 - version = "2.6.1"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "jim-easterbrook"; 19 repo = "python-gphoto2"; 20 tag = "v${version}"; 21 - hash = "sha256-842otUAcPvwEfcXGNGhFReKbv6DykLNaEkMiN6j9/CM="; 22 }; 23 24 build-system = [
··· 11 12 buildPythonPackage rec { 13 pname = "gphoto2"; 14 + version = "2.6.2"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "jim-easterbrook"; 19 repo = "python-gphoto2"; 20 tag = "v${version}"; 21 + hash = "sha256-Z480HR9AlwJQI1yi8+twzHV9PMcTKWqtvoNw6ohV+6M="; 22 }; 23 24 build-system = [
+2 -2
pkgs/development/python-modules/hid/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "hid"; 11 - version = "1.0.7"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-P4CeKSq1LEQ1rRRCyO8gW+TJyk7rgPtHx9mODHVSeyo="; 17 }; 18 19 postPatch = ''
··· 8 9 buildPythonPackage rec { 10 pname = "hid"; 11 + version = "1.0.8"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-XKEpp7lDSs5ePkKcEJKhZ5L+/68Geka2ZunFhocs3P4="; 17 }; 18 19 postPatch = ''
+3 -3
pkgs/development/python-modules/holoviews/default.nix
··· 23 24 buildPythonPackage rec { 25 pname = "holoviews"; 26 - version = "1.20.2"; 27 pyproject = true; 28 29 src = fetchFromGitHub { 30 owner = "holoviz"; 31 repo = "holoviews"; 32 tag = "v${version}"; 33 - hash = "sha256-QCRVOBMKckPji5rH7iCSnmxbNwtGypMqdfBXilXmngE="; 34 }; 35 36 postPatch = '' ··· 82 83 meta = { 84 description = "Python data analysis and visualization seamless and simple"; 85 - changelog = "https://github.com/holoviz/holoviews/releases/tag/v${version}"; 86 mainProgram = "holoviews"; 87 homepage = "https://www.holoviews.org/"; 88 license = lib.licenses.bsd3;
··· 23 24 buildPythonPackage rec { 25 pname = "holoviews"; 26 + version = "1.21.0"; 27 pyproject = true; 28 29 src = fetchFromGitHub { 30 owner = "holoviz"; 31 repo = "holoviews"; 32 tag = "v${version}"; 33 + hash = "sha256-JEGTfi4CaJaL/5AFtB92RV0DJvaIYVloukWKQSUFBZA="; 34 }; 35 36 postPatch = '' ··· 82 83 meta = { 84 description = "Python data analysis and visualization seamless and simple"; 85 + changelog = "https://github.com/holoviz/holoviews/releases/tag/${src.tag}"; 86 mainProgram = "holoviews"; 87 homepage = "https://www.holoviews.org/"; 88 license = lib.licenses.bsd3;
+3 -3
pkgs/development/python-modules/hvplot/default.nix
··· 26 27 buildPythonPackage rec { 28 pname = "hvplot"; 29 - version = "0.11.2"; 30 pyproject = true; 31 32 src = fetchFromGitHub { 33 owner = "holoviz"; 34 repo = "hvplot"; 35 tag = "v${version}"; 36 - hash = "sha256-3zACW2RDRhdGi5RBPOVQJJHT78DwcgHaCHp27gIEnjA="; 37 }; 38 39 build-system = [ ··· 92 meta = { 93 description = "High-level plotting API for the PyData ecosystem built on HoloViews"; 94 homepage = "https://hvplot.pyviz.org"; 95 - changelog = "https://github.com/holoviz/hvplot/releases/tag/v${version}"; 96 license = lib.licenses.bsd3; 97 maintainers = [ ]; 98 };
··· 26 27 buildPythonPackage rec { 28 pname = "hvplot"; 29 + version = "0.11.3"; 30 pyproject = true; 31 32 src = fetchFromGitHub { 33 owner = "holoviz"; 34 repo = "hvplot"; 35 tag = "v${version}"; 36 + hash = "sha256-V1KJtv1FCGITHdgxRWq1LWEgmWOU0N0iW60Wk0O5gC8="; 37 }; 38 39 build-system = [ ··· 92 meta = { 93 description = "High-level plotting API for the PyData ecosystem built on HoloViews"; 94 homepage = "https://hvplot.pyviz.org"; 95 + changelog = "https://github.com/holoviz/hvplot/releases/tag/${src.tag}"; 96 license = lib.licenses.bsd3; 97 maintainers = [ ]; 98 };
+2 -2
pkgs/development/python-modules/kuzu/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "kuzu"; 11 - version = "0.11.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - hash = "sha256-NLn+LZ+UQhWF+SHLBRO9WEhCpXBa51fAn9B14jrLQtc="; 16 }; 17 18 pyproject = true;
··· 8 9 buildPythonPackage rec { 10 pname = "kuzu"; 11 + version = "0.11.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + hash = "sha256-H3lqQYEGVqswk955lKBUpmVn69scg40UUlss54w/PfE="; 16 }; 17 18 pyproject = true;
+2 -2
pkgs/development/python-modules/latexcodec/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "latexcodec"; 11 - version = "3.0.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-kX3F/iQnYswZ2WPmVItC1joRgCjN0zYdYjl+O2OLa8U="; 17 }; 18 19 propagatedBuildInputs = [ six ];
··· 8 9 buildPythonPackage rec { 10 pname = "latexcodec"; 11 + version = "3.0.1"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-54ppEc1y+d7DUDHG7CNYTeaEK/vEYQqWeIaNFM37A1c="; 17 }; 18 19 propagatedBuildInputs = [ six ];
+2 -2
pkgs/development/python-modules/metaflow/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "metaflow"; 13 - version = "2.15.20"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "Netflix"; 18 repo = "metaflow"; 19 tag = version; 20 - hash = "sha256-D4Pf2/xhEJ22kDmmxYS0PiT5k2BJ3CBfTJZ4GrvkI58="; 21 }; 22 23 build-system = [
··· 10 11 buildPythonPackage rec { 12 pname = "metaflow"; 13 + version = "2.16.8"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "Netflix"; 18 repo = "metaflow"; 19 tag = version; 20 + hash = "sha256-zKEk4c4hvXejF6/WxijUIlnR5dOZZjXrD3N1MIG7LMI="; 21 }; 22 23 build-system = [
+3 -3
pkgs/development/python-modules/opensearch-py/default.nix
··· 30 31 buildPythonPackage rec { 32 pname = "opensearch-py"; 33 - version = "2.8.0"; 34 pyproject = true; 35 36 src = fetchFromGitHub { 37 owner = "opensearch-project"; 38 repo = "opensearch-py"; 39 tag = "v${version}"; 40 - hash = "sha256-rPHpGKEIINAEUu2UkJwAM60i0hTzXd1ec6WD50RrgL8="; 41 }; 42 43 nativeBuildInputs = [ setuptools ]; ··· 92 meta = { 93 description = "Python low-level client for OpenSearch"; 94 homepage = "https://github.com/opensearch-project/opensearch-py"; 95 - changelog = "https://github.com/opensearch-project/opensearch-py/releases/tag/v${version}"; 96 license = lib.licenses.asl20; 97 maintainers = with lib.maintainers; [ mcwitt ]; 98 };
··· 30 31 buildPythonPackage rec { 32 pname = "opensearch-py"; 33 + version = "3.0.0"; 34 pyproject = true; 35 36 src = fetchFromGitHub { 37 owner = "opensearch-project"; 38 repo = "opensearch-py"; 39 tag = "v${version}"; 40 + hash = "sha256-IAEh+rB26Zqv7j5g2YIRZRCAtFbBngoh+w8Z4e2bY+M="; 41 }; 42 43 nativeBuildInputs = [ setuptools ]; ··· 92 meta = { 93 description = "Python low-level client for OpenSearch"; 94 homepage = "https://github.com/opensearch-project/opensearch-py"; 95 + changelog = "https://github.com/opensearch-project/opensearch-py/releases/tag/${src.tag}"; 96 license = lib.licenses.asl20; 97 maintainers = with lib.maintainers; [ mcwitt ]; 98 };
+2 -2
pkgs/development/python-modules/optype/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "optype"; 15 - version = "0.11.0"; 16 pyproject = true; 17 18 src = fetchFromGitHub { 19 owner = "jorenham"; 20 repo = "optype"; 21 tag = "v${version}"; 22 - hash = "sha256-jExwQiEkCLiVFwiFYp2dBvH5PiRlSVG20CneGnht+No="; 23 }; 24 25 disabled = pythonOlder "3.11";
··· 12 13 buildPythonPackage rec { 14 pname = "optype"; 15 + version = "0.12.0"; 16 pyproject = true; 17 18 src = fetchFromGitHub { 19 owner = "jorenham"; 20 repo = "optype"; 21 tag = "v${version}"; 22 + hash = "sha256-sDMB9gSYf108Elsqj6Obk+6B4QKiJcStkJndVrIAWQI="; 23 }; 24 25 disabled = pythonOlder "3.11";
+2 -2
pkgs/development/python-modules/pbs-installer/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pbs-installer"; 13 - version = "2025.06.12"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.8"; ··· 19 owner = "frostming"; 20 repo = "pbs-installer"; 21 tag = version; 22 - hash = "sha256-OIG+CLtJsYmE2nTHjVpGPIAuEnFzNMVsDYcxPcirgjs="; 23 }; 24 25 build-system = [ pdm-backend ];
··· 10 11 buildPythonPackage rec { 12 pname = "pbs-installer"; 13 + version = "2025.07.23"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.8"; ··· 19 owner = "frostming"; 20 repo = "pbs-installer"; 21 tag = version; 22 + hash = "sha256-cQPQ5IDjTBTHwUU60w+gCcwTyiaC30DPIb96e0hOHIY="; 23 }; 24 25 build-system = [ pdm-backend ];
+2 -2
pkgs/development/python-modules/pymdown-extensions/default.nix
··· 45 in 46 buildPythonPackage rec { 47 pname = "pymdown-extensions"; 48 - version = "10.15"; 49 pyproject = true; 50 51 src = fetchFromGitHub { 52 owner = "facelessuser"; 53 repo = "pymdown-extensions"; 54 tag = version; 55 - hash = "sha256-ADl1l1cgJC3T8EN+cGNq14VfShGLG51ElXFRx+tdnCg="; 56 }; 57 58 build-system = [ hatchling ];
··· 45 in 46 buildPythonPackage rec { 47 pname = "pymdown-extensions"; 48 + version = "10.16.1"; 49 pyproject = true; 50 51 src = fetchFromGitHub { 52 owner = "facelessuser"; 53 repo = "pymdown-extensions"; 54 tag = version; 55 + hash = "sha256-My1sTzWXInXb4TJ3uB7IXRyUrlbJMxrWyzzge8O0ZmQ="; 56 }; 57 58 build-system = [ hatchling ];
+2 -2
pkgs/development/python-modules/pymodes/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "pymodes"; 16 - version = "2.20"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "junzis"; 23 repo = "pyModeS"; 24 tag = "v${version}"; 25 - hash = "sha256-BC1GLQW0/UBVwx3346mZsXSREGeVS+GhqH2Rl2faUoY="; 26 }; 27 28 build-system = [
··· 13 14 buildPythonPackage rec { 15 pname = "pymodes"; 16 + version = "2.21.1"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "junzis"; 23 repo = "pyModeS"; 24 tag = "v${version}"; 25 + hash = "sha256-Tla5hJ7J/3R4r4fTQMUIpY+QGvLRuNMZfWU0RsAiuk0="; 26 }; 27 28 build-system = [
+2 -2
pkgs/development/python-modules/pyroaring/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pyroaring"; 13 - version = "1.0.1"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "Ezibenroc"; 18 repo = "PyRoaringBitMap"; 19 tag = version; 20 - hash = "sha256-Zs/MO1R4iBHDfTRVizMl6KyEWI6k2iDX7jAkBZs7kZE="; 21 }; 22 23 build-system = [
··· 10 11 buildPythonPackage rec { 12 pname = "pyroaring"; 13 + version = "1.0.2"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "Ezibenroc"; 18 repo = "PyRoaringBitMap"; 19 tag = version; 20 + hash = "sha256-g+xpQ2DuVn8b0DiIOY69QOH6iwOYHG4bltX1zbDemdI="; 21 }; 22 23 build-system = [
+2 -2
pkgs/development/python-modules/pytools/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "pytools"; 16 - version = "2025.1.6"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.8"; 20 21 src = fetchPypi { 22 inherit pname version; 23 - hash = "sha256-k44d+Zl7pax3EDSkmw5jgBvZOiuS5qOPQyQVGaH7Mis="; 24 }; 25 26 build-system = [ hatchling ];
··· 13 14 buildPythonPackage rec { 15 pname = "pytools"; 16 + version = "2025.2.2"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.8"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-iOxR2SM7CisJNe1/FTRX7nDf0xpaCuQA8/xs3K8tQ90="; 24 }; 25 26 build-system = [ hatchling ];
+28 -13
pkgs/development/python-modules/pyyaml-include/default.nix
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 - pytestCheckHook, 6 - pyyaml, 7 setuptools, 8 setuptools-scm, 9 - wheel, 10 }: 11 12 buildPythonPackage rec { 13 pname = "pyyaml-include"; 14 - version = "1.3.1"; 15 - format = "pyproject"; 16 17 src = fetchFromGitHub { 18 owner = "tanbro"; 19 repo = "pyyaml-include"; 20 tag = "v${version}"; 21 - hash = "sha256-xsNMIEBYqMVQp+H8R7XpFCwROXA8I6bFvAuHrRvC+DI="; 22 }; 23 24 - nativeBuildInputs = [ 25 setuptools 26 setuptools-scm 27 - wheel 28 ]; 29 30 - propagatedBuildInputs = [ pyyaml ]; 31 32 - nativeCheckInputs = [ pytestCheckHook ]; 33 34 - pythonImportsCheck = [ "yamlinclude" ]; 35 36 - meta = with lib; { 37 description = "Extending PyYAML with a custom constructor for including YAML files within YAML files"; 38 homepage = "https://github.com/tanbro/pyyaml-include"; 39 - license = licenses.gpl3Plus; 40 maintainers = [ ]; 41 }; 42 }
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 + 6 + # build-system 7 setuptools, 8 setuptools-scm, 9 + 10 + # dependencies 11 + fsspec, 12 + pyyaml, 13 + 14 + # tests 15 + aiohttp, 16 + pytestCheckHook, 17 }: 18 19 buildPythonPackage rec { 20 pname = "pyyaml-include"; 21 + version = "2.2"; 22 + pyproject = true; 23 24 src = fetchFromGitHub { 25 owner = "tanbro"; 26 repo = "pyyaml-include"; 27 tag = "v${version}"; 28 + hash = "sha256-nswSYRTZ6LTLSGh78DnrXl3q06Ap1J1IMKOESv1lJoY="; 29 }; 30 31 + build-system = [ 32 setuptools 33 setuptools-scm 34 ]; 35 36 + dependencies = [ 37 + fsspec 38 + pyyaml 39 + ]; 40 41 + nativeCheckInputs = [ 42 + aiohttp 43 + pytestCheckHook 44 + ]; 45 46 + pythonImportsCheck = [ "yaml_include" ]; 47 48 + __darwinAllowLocalNetworking = true; 49 + 50 + meta = { 51 description = "Extending PyYAML with a custom constructor for including YAML files within YAML files"; 52 homepage = "https://github.com/tanbro/pyyaml-include"; 53 + changelog = "https://github.com/tanbro/pyyaml-include/blob/v${version}/CHANGELOG.md"; 54 + license = lib.licenses.gpl3Plus; 55 maintainers = [ ]; 56 }; 57 }
+2 -2
pkgs/development/python-modules/sphinx-codeautolink/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "sphinx-codeautolink"; 20 - version = "0.17.4"; 21 pyproject = true; 22 23 outputs = [ ··· 29 owner = "felix-hilden"; 30 repo = "sphinx-codeautolink"; 31 tag = "v${version}"; 32 - hash = "sha256-1a76t4k2hVXwrG6X4w5yFYCMyR12Nlqodd2D0GoH/vM="; 33 }; 34 35 build-system = [ setuptools ];
··· 17 18 buildPythonPackage rec { 19 pname = "sphinx-codeautolink"; 20 + version = "0.17.5"; 21 pyproject = true; 22 23 outputs = [ ··· 29 owner = "felix-hilden"; 30 repo = "sphinx-codeautolink"; 31 tag = "v${version}"; 32 + hash = "sha256-43XDCajH+uSHnofjK/gH4EAiv2ljjuBr8UbJtm/DsDI="; 33 }; 34 35 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/ssort/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "ssort"; 13 - version = "0.14.0"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "bwhmather"; 18 repo = "ssort"; 19 tag = version; 20 - hash = "sha256-TINktjuTdyRYkqIs3Jyv6vobSBqV1iPoHrG36sBHah8="; 21 }; 22 23 build-system = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "ssort"; 13 + version = "0.15.0"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "bwhmather"; 18 repo = "ssort"; 19 tag = version; 20 + hash = "sha256-7WeLhetqbqiQQlDmoWSMzydhiKcdI2CbemKjWJd5Uoc="; 21 }; 22 23 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/streamlit/default.nix
··· 28 29 buildPythonPackage rec { 30 pname = "streamlit"; 31 - version = "1.46.0"; 32 pyproject = true; 33 34 disabled = pythonOlder "3.9"; 35 36 src = fetchPypi { 37 inherit pname version; 38 - hash = "sha256-Cyc0tI8R8eXIBGARtrGiJ0mC3GV+7yrejbcPDh3FPdo="; 39 }; 40 41 build-system = [
··· 28 29 buildPythonPackage rec { 30 pname = "streamlit"; 31 + version = "1.47.1"; 32 pyproject = true; 33 34 disabled = pythonOlder "3.9"; 35 36 src = fetchPypi { 37 inherit pname version; 38 + hash = "sha256-2u15dj0cr+sDzdgAuRqpx63DaIxrLL9OzCyomaq4Kio="; 39 }; 40 41 build-system = [
+49
pkgs/development/python-modules/tinyio/default.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + 7 + # build-system 8 + hatchling, 9 + 10 + # tests 11 + pytestCheckHook, 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "tinyio"; 16 + version = "0.2.0"; 17 + pyproject = true; 18 + 19 + src = fetchFromGitHub { 20 + owner = "patrick-kidger"; 21 + repo = "tinyio"; 22 + tag = "v${version}"; 23 + hash = "sha256-5Fk+/tT6mkyIosRKTFG5XuFtAM5wy3v0npiJjN47WV8="; 24 + }; 25 + 26 + build-system = [ 27 + hatchling 28 + ]; 29 + 30 + pythonImportsCheck = [ "tinyio" ]; 31 + 32 + nativeCheckInputs = [ 33 + pytestCheckHook 34 + ]; 35 + 36 + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ 37 + # AssertionError 38 + # assert 0 >= 4, where 0 = sum([False, False, False, False, False]) 39 + "test_sleep" 40 + ]; 41 + 42 + meta = { 43 + description = "Dead-simple event loop for Python"; 44 + homepage = "https://github.com/patrick-kidger/tinyio"; 45 + changelog = "https://github.com/patrick-kidger/tinyio/releases/tag/v${version}"; 46 + license = lib.licenses.asl20; 47 + maintainers = with lib.maintainers; [ GaetanLepage ]; 48 + }; 49 + }
+2 -2
pkgs/development/python-modules/xattr/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "xattr"; 13 - version = "1.1.4"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.8"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - hash = "sha256-t7AuyyJw2lt+feruqPi1KMFzaEAcK51fY+kfVFtF03I="; 21 }; 22 23 nativeBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "xattr"; 13 + version = "1.2.0"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.8"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + hash = "sha256-pkyOIe/xvhQ6zPgP07j94+KKR4w32imHQq9kesPl4Kc="; 21 }; 22 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/xlrd/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "xlrd"; 10 - version = "2.0.1"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88"; 16 }; 17 18 nativeCheckInputs = [ pytestCheckHook ];
··· 7 8 buildPythonPackage rec { 9 pname = "xlrd"; 10 + version = "2.0.2"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + sha256 = "sha256-CLXiXeWPIc5x3H2zs7gQbB+ndvMCTFTkW0WzdOiSNMk="; 16 }; 17 18 nativeCheckInputs = [ pytestCheckHook ];
+2 -2
pkgs/development/tools/build-managers/sbt/default.nix
··· 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "sbt"; 13 - version = "1.11.3"; 14 15 src = fetchurl { 16 url = "https://github.com/sbt/sbt/releases/download/v${finalAttrs.version}/sbt-${finalAttrs.version}.tgz"; 17 - hash = "sha256-PqUJFayLmJuLH8niTllKYNPBgdQwE/6WSxX+s4RIOzw="; 18 }; 19 20 postPatch = ''
··· 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "sbt"; 13 + version = "1.11.4"; 14 15 src = fetchurl { 16 url = "https://github.com/sbt/sbt/releases/download/v${finalAttrs.version}/sbt-${finalAttrs.version}.tgz"; 17 + hash = "sha256-1LVmQmTh11KRX3jMOaSeaB329h0av2HOppZssiEEarY="; 18 }; 19 20 postPatch = ''
+6 -3
pkgs/development/tools/ilspycmd/default.nix
··· 10 }: 11 buildDotnetModule (finalAttrs: { 12 pname = "ilspycmd"; 13 - version = "9.0-preview3"; 14 15 src = fetchFromGitHub { 16 owner = "icsharpcode"; 17 repo = "ILSpy"; 18 rev = "v${finalAttrs.version}"; 19 - hash = "sha256-7cPXFaEKr76GtqcNsKx7tstRUeTpSTF8ggxbyEnQa9M="; 20 }; 21 22 nativeBuildInputs = [ ··· 53 fromSource 54 binaryBytecode 55 ]; 56 - maintainers = with lib.maintainers; [ emilytrau ]; 57 }; 58 })
··· 10 }: 11 buildDotnetModule (finalAttrs: { 12 pname = "ilspycmd"; 13 + version = "9.1"; 14 15 src = fetchFromGitHub { 16 owner = "icsharpcode"; 17 repo = "ILSpy"; 18 rev = "v${finalAttrs.version}"; 19 + hash = "sha256-YkZEStCI6Omu8HgClm5qHnXxm5pKJVILtbydY8vAFic="; 20 }; 21 22 nativeBuildInputs = [ ··· 53 fromSource 54 binaryBytecode 55 ]; 56 + maintainers = with lib.maintainers; [ 57 + emilytrau 58 + tbaldwin 59 + ]; 60 }; 61 })
+40 -20
pkgs/development/tools/ilspycmd/deps.json
··· 195 "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 196 }, 197 { 198 "pname": "Microsoft.SourceLink.Common", 199 "version": "8.0.0", 200 "hash": "sha256-AfUqleVEqWuHE7z2hNiwOLnquBJ3tuYtbkdGMppHOXc=" ··· 221 }, 222 { 223 "pname": "NuGet.Common", 224 - "version": "6.11.1", 225 - "hash": "sha256-UyZtDyTuymC+sKSX+ripOI6MmJZn11loVapVs4uzaGo=" 226 }, 227 { 228 "pname": "NuGet.Configuration", 229 - "version": "6.11.1", 230 - "hash": "sha256-JH2UCpjYg8pkqxQ4j4BrWiTKhGzgfn55NMr32wf6+FQ=" 231 }, 232 { 233 "pname": "NuGet.Frameworks", 234 - "version": "6.11.1", 235 - "hash": "sha256-p25Oa7wJjwF+2puIhBkZZkKSuk4jGq7xikYSCdfp9Vc=" 236 }, 237 { 238 "pname": "NuGet.Packaging", 239 - "version": "6.11.1", 240 - "hash": "sha256-1yY3p5hQwbUgYCyHnBcuGWiiIib1ppPYt2ntxwXSJW0=" 241 }, 242 { 243 "pname": "NuGet.Protocol", 244 - "version": "6.11.1", 245 - "hash": "sha256-/zFvBV83Q5oMNu68BjmrHtZMAxf/YkDJV8HSsl5GjsY=" 246 }, 247 { 248 "pname": "NuGet.Versioning", 249 - "version": "6.11.1", 250 - "hash": "sha256-fl8lyChMjV7Sp8keAP7CdXZh7ARN/mU39T3gG74jDWY=" 251 }, 252 { 253 "pname": "System.Buffers", ··· 260 "hash": "sha256-DKEbpFqXCIEfqp9p3ezqadn5b/S1YTk32/EQK+tEScs=" 261 }, 262 { 263 "pname": "System.ComponentModel.Annotations", 264 "version": "5.0.0", 265 "hash": "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg=" 266 }, 267 { 268 "pname": "System.Composition.AttributedModel", 269 - "version": "8.0.0", 270 - "hash": "sha256-n3aXiBAFIlQicSRLiNtLh++URSUxRBLggsjJ8OMNRpo=" 271 }, 272 { 273 "pname": "System.Diagnostics.EventLog", ··· 276 }, 277 { 278 "pname": "System.Formats.Asn1", 279 - "version": "6.0.0", 280 - "hash": "sha256-KaMHgIRBF7Nf3VwOo+gJS1DcD+41cJDPWFh+TDQ8ee8=" 281 }, 282 { 283 "pname": "System.Memory", ··· 296 }, 297 { 298 "pname": "System.Reflection.Metadata", 299 - "version": "8.0.1", 300 - "hash": "sha256-Swip1XuTs/r2m4RKuG5BXXxcaNGRh+jbMnjFRNdL87U=" 301 }, 302 { 303 "pname": "System.Runtime.CompilerServices.Unsafe", ··· 305 "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 306 }, 307 { 308 "pname": "System.Security.Cryptography.Pkcs", 309 "version": "6.0.4", 310 "hash": "sha256-2e0aRybote+OR66bHaNiYpF//4fCiaO3zbR2e9GABUI=" ··· 316 }, 317 { 318 "pname": "TomsToolbox.Composition.Analyzer", 319 - "version": "2.20.0", 320 - "hash": "sha256-xjWXdkXF8X9nDdzLNA2H1WcpPZV4NDiKf//TeQbLUtc=" 321 }, 322 { 323 "pname": "TunnelVisionLabs.ReferenceAssemblyAnnotator",
··· 195 "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 196 }, 197 { 198 + "pname": "Microsoft.Sbom.Targets", 199 + "version": "3.1.0", 200 + "hash": "sha256-7q/fcTp7yU/yj7pCmzIyqBO3hOZ2Uko/jfZugIPjyrs=" 201 + }, 202 + { 203 "pname": "Microsoft.SourceLink.Common", 204 "version": "8.0.0", 205 "hash": "sha256-AfUqleVEqWuHE7z2hNiwOLnquBJ3tuYtbkdGMppHOXc=" ··· 226 }, 227 { 228 "pname": "NuGet.Common", 229 + "version": "6.13.2", 230 + "hash": "sha256-ASLa/Jigg5Eop0ZrXPl98RW2rxnJRC7pbbxhuV74hFw=" 231 }, 232 { 233 "pname": "NuGet.Configuration", 234 + "version": "6.13.2", 235 + "hash": "sha256-z8VW1YdRDanyyRTDYRvRkSv/XPR3c/hMM1y8cNNjx0Y=" 236 }, 237 { 238 "pname": "NuGet.Frameworks", 239 + "version": "6.13.2", 240 + "hash": "sha256-caDyc+WgYOo43AUTjtbP0MyvYDb6JweEKDdIul61Cac=" 241 }, 242 { 243 "pname": "NuGet.Packaging", 244 + "version": "6.13.2", 245 + "hash": "sha256-lhO+SFwIYZ4aPHxIGm5ubkkE2a5Ve2xgtroRbNh7hpw=" 246 }, 247 { 248 "pname": "NuGet.Protocol", 249 + "version": "6.13.2", 250 + "hash": "sha256-5lnAHHZjy7A4vgv65AeBAs64mSNpuoUjxW3HnrMpuzY=" 251 }, 252 { 253 "pname": "NuGet.Versioning", 254 + "version": "6.13.2", 255 + "hash": "sha256-gmpyBpKnt+GHqgx/2uFKp+J2csbxEAy1E7WdVT117sw=" 256 }, 257 { 258 "pname": "System.Buffers", ··· 265 "hash": "sha256-DKEbpFqXCIEfqp9p3ezqadn5b/S1YTk32/EQK+tEScs=" 266 }, 267 { 268 + "pname": "System.Collections.Immutable", 269 + "version": "8.0.0", 270 + "hash": "sha256-F7OVjKNwpqbUh8lTidbqJWYi476nsq9n+6k0+QVRo3w=" 271 + }, 272 + { 273 + "pname": "System.Collections.Immutable", 274 + "version": "9.0.4", 275 + "hash": "sha256-0A6gCPjhx0IIAlhskPsWS8cjWpoBJGEYTnW1fkdpFTg=" 276 + }, 277 + { 278 "pname": "System.ComponentModel.Annotations", 279 "version": "5.0.0", 280 "hash": "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg=" 281 }, 282 { 283 "pname": "System.Composition.AttributedModel", 284 + "version": "9.0.4", 285 + "hash": "sha256-r71EJF5F5ZjAgkuvcI00tAnnIrK+IQ5Wj7wU8MwwRRQ=" 286 }, 287 { 288 "pname": "System.Diagnostics.EventLog", ··· 291 }, 292 { 293 "pname": "System.Formats.Asn1", 294 + "version": "8.0.1", 295 + "hash": "sha256-may/Wg+esmm1N14kQTG4ESMBi+GQKPp0ZrrBo/o6OXM=" 296 }, 297 { 298 "pname": "System.Memory", ··· 311 }, 312 { 313 "pname": "System.Reflection.Metadata", 314 + "version": "9.0.4", 315 + "hash": "sha256-JG4esIQbb7J9u/H0HmwFpHjhUYTGIiRVD5KPt3w5okA=" 316 }, 317 { 318 "pname": "System.Runtime.CompilerServices.Unsafe", ··· 320 "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 321 }, 322 { 323 + "pname": "System.Runtime.CompilerServices.Unsafe", 324 + "version": "6.1.2", 325 + "hash": "sha256-X2p/U680Zfkr622oc+vg5JYgbDEzE7mLre5DVaayWTc=" 326 + }, 327 + { 328 "pname": "System.Security.Cryptography.Pkcs", 329 "version": "6.0.4", 330 "hash": "sha256-2e0aRybote+OR66bHaNiYpF//4fCiaO3zbR2e9GABUI=" ··· 336 }, 337 { 338 "pname": "TomsToolbox.Composition.Analyzer", 339 + "version": "2.22.0", 340 + "hash": "sha256-AXU4yapjJ612DiqezH0lkJA4ktiP3w11gYKVFGAl+A8=" 341 }, 342 { 343 "pname": "TunnelVisionLabs.ReferenceAssemblyAnnotator",
+2 -2
pkgs/os-specific/linux/kernel/generic.nix
··· 139 140 structuredConfigFromPatches = map ( 141 { 142 - extraStructuredConfig ? { }, 143 ... 144 }: 145 { 146 - settings = extraStructuredConfig; 147 } 148 ) kernelPatches; 149
··· 139 140 structuredConfigFromPatches = map ( 141 { 142 + structuredExtraConfig ? { }, 143 ... 144 }: 145 { 146 + settings = structuredExtraConfig; 147 } 148 ) kernelPatches; 149
+2 -2
pkgs/shells/fish/plugins/macos.nix
··· 7 8 buildFishPlugin rec { 9 pname = "macos"; 10 - version = "7.0.1"; 11 12 src = fetchFromGitHub { 13 owner = "halostatue"; 14 repo = "fish-macos"; 15 tag = "v${version}"; 16 - hash = "sha256-E5HfcGEP5YnUXY50eSPPtLxXL9N7nDInlAw91dNehhc="; 17 }; 18 19 passthru.updateScript = nix-update-script { };
··· 7 8 buildFishPlugin rec { 9 pname = "macos"; 10 + version = "7.1.0"; 11 12 src = fetchFromGitHub { 13 owner = "halostatue"; 14 repo = "fish-macos"; 15 tag = "v${version}"; 16 + hash = "sha256-gAbmpEmUvM3pFEZ6oSFM//dmu4sXu6ncMiOH75iq5A4="; 17 }; 18 19 passthru.updateScript = nix-update-script { };
+2 -2
pkgs/shells/fish/plugins/tide.nix
··· 8 # Refer to the following comment to get you setup: https://github.com/NixOS/nixpkgs/pull/201646#issuecomment-1320893716 9 buildFishPlugin rec { 10 pname = "tide"; 11 - version = "6.1.1"; 12 13 src = fetchFromGitHub { 14 owner = "IlanCosman"; 15 repo = "tide"; 16 rev = "v${version}"; 17 - hash = "sha256-ZyEk/WoxdX5Fr2kXRERQS1U1QHH3oVSyBQvlwYnEYyc="; 18 }; 19 20 #buildFishplugin will only move the .fish files, but tide has a tide configure function
··· 8 # Refer to the following comment to get you setup: https://github.com/NixOS/nixpkgs/pull/201646#issuecomment-1320893716 9 buildFishPlugin rec { 10 pname = "tide"; 11 + version = "6.2.0"; 12 13 src = fetchFromGitHub { 14 owner = "IlanCosman"; 15 repo = "tide"; 16 rev = "v${version}"; 17 + hash = "sha256-1ApDjBUZ1o5UyfQijv9a3uQJ/ZuQFfpNmHiDWzoHyuw="; 18 }; 19 20 #buildFishplugin will only move the .fish files, but tide has a tide configure function
-1
pkgs/tools/inputmethods/ibus/default.nix
··· 234 description = "Intelligent Input Bus, input method framework"; 235 license = lib.licenses.lgpl21Plus; 236 platforms = lib.platforms.linux; 237 - mainProgram = "ibus"; 238 maintainers = with lib.maintainers; [ ttuegel ]; 239 }; 240 })
··· 234 description = "Intelligent Input Bus, input method framework"; 235 license = lib.licenses.lgpl21Plus; 236 platforms = lib.platforms.linux; 237 maintainers = with lib.maintainers; [ ttuegel ]; 238 }; 239 })
+7 -14
pkgs/tools/virtualization/mkosi/default.nix
··· 1 { 2 lib, 3 fetchFromGitHub, 4 stdenv, 5 - python, 6 systemd, 7 pandoc, 8 kmod, ··· 15 libseccomp, 16 replaceVars, 17 udevCheckHook, 18 - 19 - # Python packages 20 - setuptools, 21 - setuptools-scm, 22 - wheel, 23 - buildPythonApplication, 24 - pytestCheckHook, 25 26 # Optional dependencies 27 withQemu ? false, ··· 46 withKernelInstall = true; 47 }; 48 49 - pythonWithPefile = python.withPackages (ps: [ ps.pefile ]); 50 51 deps = [ 52 bash ··· 63 qemu 64 ]; 65 in 66 - buildPythonApplication rec { 67 pname = "mkosi"; 68 version = "25.3-unstable-2025-04-01"; 69 format = "pyproject"; ··· 106 107 nativeBuildInputs = [ 108 pandoc 109 - setuptools 110 - setuptools-scm 111 - wheel 112 udevCheckHook 113 ]; 114 ··· 119 ''; 120 121 checkInputs = [ 122 - pytestCheckHook 123 ]; 124 125 postInstall = ''
··· 1 { 2 lib, 3 + python3Packages, 4 fetchFromGitHub, 5 stdenv, 6 systemd, 7 pandoc, 8 kmod, ··· 15 libseccomp, 16 replaceVars, 17 udevCheckHook, 18 19 # Optional dependencies 20 withQemu ? false, ··· 39 withKernelInstall = true; 40 }; 41 42 + pythonWithPefile = python3Packages.python.withPackages (ps: [ ps.pefile ]); 43 44 deps = [ 45 bash ··· 56 qemu 57 ]; 58 in 59 + python3Packages.buildPythonApplication rec { 60 pname = "mkosi"; 61 version = "25.3-unstable-2025-04-01"; 62 format = "pyproject"; ··· 99 100 nativeBuildInputs = [ 101 pandoc 102 + python3Packages.setuptools 103 + python3Packages.setuptools-scm 104 + python3Packages.wheel 105 udevCheckHook 106 ]; 107 ··· 112 ''; 113 114 checkInputs = [ 115 + python3Packages.pytestCheckHook 116 ]; 117 118 postInstall = ''
+1 -1
pkgs/top-level/all-packages.nix
··· 1102 }; 1103 }; 1104 1105 - mkosi = python3Packages.callPackage ../tools/virtualization/mkosi { inherit systemd; }; 1106 1107 mkosi-full = mkosi.override { withQemu = true; }; 1108
··· 1102 }; 1103 }; 1104 1105 + mkosi = callPackage ../tools/virtualization/mkosi { }; 1106 1107 mkosi-full = mkosi.override { withQemu = true; }; 1108
+2
pkgs/top-level/ocaml-packages.nix
··· 1066 1067 logs = callPackage ../development/ocaml-modules/logs { }; 1068 1069 lru = callPackage ../development/ocaml-modules/lru { }; 1070 1071 lsp = callPackage ../development/ocaml-modules/ocaml-lsp/lsp.nix { };
··· 1066 1067 logs = callPackage ../development/ocaml-modules/logs { }; 1068 1069 + logs-syslog = callPackage ../development/ocaml-modules/logs-syslog { }; 1070 + 1071 lru = callPackage ../development/ocaml-modules/lru { }; 1072 1073 lsp = callPackage ../development/ocaml-modules/ocaml-lsp/lsp.nix { };
+2
pkgs/top-level/python-packages.nix
··· 18047 18048 tinyhtml5 = callPackage ../development/python-modules/tinyhtml5 { }; 18049 18050 tinyobjloader-py = callPackage ../development/python-modules/tinyobjloader-py { }; 18051 18052 tinyrecord = callPackage ../development/python-modules/tinyrecord { };
··· 18047 18048 tinyhtml5 = callPackage ../development/python-modules/tinyhtml5 { }; 18049 18050 + tinyio = callPackage ../development/python-modules/tinyio { }; 18051 + 18052 tinyobjloader-py = callPackage ../development/python-modules/tinyobjloader-py { }; 18053 18054 tinyrecord = callPackage ../development/python-modules/tinyrecord { };