Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
eb26e06e 597366a4

+170 -145
-6
maintainers/maintainer-list.nix
··· 15264 15264 githubId = 496447; 15265 15265 name = "Robert Hensing"; 15266 15266 }; 15267 - robert-manchester = { 15268 - email = "robert.manchester@gmail.com"; 15269 - github = "robert-manchester"; 15270 - githubId = 86313040; 15271 - name = "Robert Manchester"; 15272 - }; 15273 15267 robertodr = { 15274 15268 email = "roberto.diremigio@gmail.com"; 15275 15269 github = "robertodr";
+2 -2
pkgs/applications/graphics/lorien/default.nix
··· 33 33 in 34 34 stdenv.mkDerivation rec { 35 35 pname = "lorien"; 36 - version = "0.5.0"; 36 + version = "0.6.0"; 37 37 38 38 src = fetchFromGitHub { 39 39 owner = "mbrlabs"; 40 40 repo = "Lorien"; 41 41 rev = "v${version}"; 42 - sha256 = "sha256-x81Obana2BEGrYSoJHDdCkL6UaULfQGQ94tlrH5+kdY="; 42 + sha256 = "sha256-mPv/3hyLGF3IUy6cKfGoABidIsyw4UfmhfhS4AD72K8="; 43 43 }; 44 44 45 45 nativeBuildInputs = [
+8 -8
pkgs/applications/networking/browsers/chromium/upstream-info.nix
··· 15 15 version = "2023-09-12"; 16 16 }; 17 17 }; 18 - hash = "sha256-sVBZ0FnaJg1P9a2X8N1MSs8ehPSPzgfbhprb+4v0gXA="; 19 - hash_deb_amd64 = "sha256-WLTTFMUvtBHvvegDFpZ+7Eht9StMyleaqXEBhPhgPTs="; 20 - version = "119.0.6045.105"; 18 + hash = "sha256-UR8EowMYZ668qQ/6C9C/M+0HSguyUGKVhY46FTG+ShA="; 19 + hash_deb_amd64 = "sha256-PIBWkCwU/7N242wR/WmpJDDJKLDGk/sJxPxa05bOQSE="; 20 + version = "119.0.6045.123"; 21 21 }; 22 22 ungoogled-chromium = { 23 23 deps = { ··· 28 28 version = "2023-09-12"; 29 29 }; 30 30 ungoogled-patches = { 31 - hash = "sha256-+1ln5xD+VwhB+f64rnSXeNOYmhbnm6Kb2xBe5Aanxkc="; 32 - rev = "119.0.6045.105-1"; 31 + hash = "sha256-4EbfM62KuG8nHrYWwp183V5G9ac7FICjpyJahnKbQjE="; 32 + rev = "119.0.6045.123-1"; 33 33 }; 34 34 }; 35 - hash = "sha256-sVBZ0FnaJg1P9a2X8N1MSs8ehPSPzgfbhprb+4v0gXA="; 36 - hash_deb_amd64 = "sha256-WLTTFMUvtBHvvegDFpZ+7Eht9StMyleaqXEBhPhgPTs="; 37 - version = "119.0.6045.105"; 35 + hash = "sha256-UR8EowMYZ668qQ/6C9C/M+0HSguyUGKVhY46FTG+ShA="; 36 + hash_deb_amd64 = "sha256-PIBWkCwU/7N242wR/WmpJDDJKLDGk/sJxPxa05bOQSE="; 37 + version = "119.0.6045.123"; 38 38 }; 39 39 }
+17 -10
pkgs/applications/science/logic/abc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub 2 - , readline, cmake 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , readline 5 + , cmake 3 6 }: 4 7 5 - stdenv.mkDerivation rec { 8 + stdenv.mkDerivation (finalAttrs: { 6 9 pname = "abc-verifier"; 7 - version = "unstable-2023-09-13"; 10 + version = "unstable-2023-10-13"; 8 11 9 12 src = fetchFromGitHub { 10 13 owner = "yosyshq"; 11 14 repo = "abc"; 12 - rev = "daad9ede0137dc58487a0abc126253e671a85b14"; 13 - hash = "sha256-5XeFYvdqT08xduFUDC5yK1jEOV1fYzyQD7N9ZmG3mpQ="; 15 + rev = "896e5e7dedf9b9b1459fa019f1fa8aa8101fdf43"; 16 + hash = "sha256-ou+E2lvDEOxXRXNygE/TyVi7quqk+CJHRI+HDI0xljE="; 14 17 }; 15 18 16 19 nativeBuildInputs = [ cmake ]; 17 20 buildInputs = [ readline ]; 18 21 19 - installPhase = "mkdir -p $out/bin && mv abc $out/bin"; 22 + installPhase = '' 23 + runHook preInstall 24 + install -Dm755 'abc' "$out/bin/abc" 25 + runHook postInstall 26 + ''; 20 27 21 28 # needed by yosys 22 - passthru.rev = src.rev; 29 + passthru.rev = finalAttrs.src.rev; 23 30 24 31 meta = with lib; { 25 32 description = "A tool for squential logic synthesis and formal verification"; 26 33 homepage = "https://people.eecs.berkeley.edu/~alanmi/abc"; 27 34 license = licenses.mit; 28 - maintainers = with maintainers; [ thoughtpolice ]; 35 + maintainers = with maintainers; [ thoughtpolice Luflosi ]; 29 36 mainProgram = "abc"; 30 37 platforms = platforms.unix; 31 38 }; 32 - } 39 + })
+2 -2
pkgs/applications/version-management/git-codereview/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "git-codereview"; 5 - version = "1.7.0"; 5 + version = "1.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "golang"; 9 9 repo = "review"; 10 10 rev = "v${version}"; 11 - hash = "sha256-vq/rrDOZUn/apHgk6YPnfG7hmKRSapuw49ZyFVMWNqs="; 11 + hash = "sha256-E6KgFSlWa/MKG6R2P+K4T+P/JOqaIfxdWpsSFGHbihg="; 12 12 }; 13 13 14 14 vendorHash = null;
+1
pkgs/applications/video/mpv/default.nix
··· 256 256 ''; 257 257 changelog = "https://github.com/mpv-player/mpv/releases/tag/v${finalAttrs.version}"; 258 258 license = licenses.gpl2Plus; 259 + mainProgram = "mpv"; 259 260 maintainers = with maintainers; [ AndersonTorres fpletz globin ma27 tadeokondrak ]; 260 261 platforms = platforms.unix; 261 262 };
+1 -1
pkgs/applications/video/mpv/scripts/thumbfast.nix
··· 13 13 14 14 postPatch = '' 15 15 substituteInPlace thumbfast.lua \ 16 - --replace 'mpv_path = "mpv"' 'mpv_path = "${lib.getBin mpv-unwrapped}/bin/mpv"' 16 + --replace 'mpv_path = "mpv"' 'mpv_path = "${lib.getExe mpv-unwrapped}"' 17 17 ''; 18 18 19 19 dontBuild = true;
+1 -1
pkgs/by-name/tk/tkdiff/package.nix
··· 44 44 diff regions to achieve exactly the merge output desired. 45 45 ''; 46 46 mainProgram = "tkdiff"; 47 - maintainers = with lib.maintainers; [ robert-manchester ]; 47 + maintainers = with lib.maintainers; [ mikaelfangel ]; 48 48 platforms = tk.meta.platforms; 49 49 }; 50 50 })
+8 -8
pkgs/development/compilers/yosys/default.nix
··· 69 69 } // (yosys-symbiflow); 70 70 71 71 72 - in stdenv.mkDerivation rec { 72 + in stdenv.mkDerivation (finalAttrs: { 73 73 pname = "yosys"; 74 - version = "0.34"; 74 + version = "0.35"; 75 75 76 76 src = fetchFromGitHub { 77 77 owner = "YosysHQ"; 78 78 repo = "yosys"; 79 - rev = "refs/tags/${pname}-${version}"; 80 - hash = "sha256-GHDsMBj7DRb9ffESgzd1HzDAA6Cyft5PomidvIMzn9g="; 79 + rev = "refs/tags/${finalAttrs.pname}-${finalAttrs.version}"; 80 + hash = "sha256-jB8y7XGDX9rVF6c4FSTLOyvsxPhdjU8Taj6MQeoU4KQ="; 81 81 }; 82 82 83 83 enableParallelBuilding = true; ··· 101 101 102 102 postPatch = '' 103 103 substituteInPlace ./Makefile \ 104 - --replace 'echo UNKNOWN' 'echo ${builtins.substring 0 10 src.rev}' 104 + --replace 'echo UNKNOWN' 'echo ${builtins.substring 0 10 finalAttrs.src.rev}' 105 105 106 106 chmod +x ./misc/yosys-config.in 107 107 patchShebangs tests ./misc/yosys-config.in ··· 120 120 fi 121 121 122 122 if ! grep -q "YOSYS_VER := $version" Makefile; then 123 - echo "ERROR: yosys version in Makefile isn't equivalent to version of the nix package (allegedly ${version}), failing." 123 + echo "ERROR: yosys version in Makefile isn't equivalent to version of the nix package (allegedly ${finalAttrs.version}), failing." 124 124 exit 1 125 125 fi 126 126 ''; ··· 150 150 homepage = "https://yosyshq.net/yosys/"; 151 151 license = licenses.isc; 152 152 platforms = platforms.all; 153 - maintainers = with maintainers; [ shell thoughtpolice emily ]; 153 + maintainers = with maintainers; [ shell thoughtpolice emily Luflosi ]; 154 154 }; 155 - } 155 + })
+2 -2
pkgs/development/libraries/ngtcp2/gnutls.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "ngtcp2"; 9 - version = "1.0.0"; 9 + version = "1.0.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ngtcp2"; 13 13 repo = "ngtcp2"; 14 14 rev = "v${version}"; 15 - hash = "sha256-dnYIRcNGTIzETu2OjTJa0IWB1+xttdGFKRBmMkTwrXk="; 15 + hash = "sha256-Z8rMujmshdes5SLU5GpXu6QzAHl957sFDK+QSdGYCOc="; 16 16 }; 17 17 18 18 outputs = [ "out" "dev" ];
+24 -1
pkgs/development/misc/newlib/default.nix
··· 31 31 # newlib expects CC to build for build platform, not host platform 32 32 preConfigure = '' 33 33 export CC=cc 34 + '' + 35 + # newlib tries to disable itself when building for Linux *except* 36 + # when native-compiling. Unfortunately the check for "is cross 37 + # compiling" was written when newlib was part of GCC and newlib 38 + # was built along with GCC (therefore newlib was built to execute 39 + # on the targetPlatform, not the hostPlatform). Unfortunately 40 + # when newlib was extracted from GCC, this "is cross compiling" 41 + # logic was not fixed. So we must disable it. 42 + '' 43 + substituteInPlace configure --replace 'noconfigdirs target-newlib target-libgloss' 'noconfigdirs' 34 44 ''; 35 45 46 + 36 47 configurePlatforms = [ "build" "target" ]; 37 48 # flags copied from https://community.arm.com/support-forums/f/compilers-and-libraries-forum/53310/gcc-arm-none-eabi-what-were-the-newlib-compilation-options 38 49 # sort alphabetically 39 50 configureFlags = [ 40 - "--host=${stdenv.buildPlatform.config}" 51 + "--with-newlib" 52 + 53 + # The newlib configury uses `host` to refer to the platform 54 + # which is being used to compile newlib. Ugh. It does this 55 + # because of its history: newlib used to be distributed with and 56 + # built as part of gcc. 57 + # 58 + # To prevent nixpkgs from going insane, this package presents the 59 + # "normal" view to the outside world: the binaries in $out will 60 + # execute on `stdenv.hostPlatform`. We then fool newlib's build 61 + # process into doing the right thing. 62 + "--host=${stdenv.targetPlatform.config}" 63 + 41 64 ] ++ (if !nanoizeNewlib then [ 42 65 "--disable-newlib-supplied-syscalls" 43 66 "--disable-nls"
+22
pkgs/development/python-modules/bash-kernel/bash-path.patch
··· 1 + diff --git a/bash_kernel/kernel.py b/bash_kernel/kernel.py 2 + index 0496f1e..bd13c4f 100644 3 + --- a/bash_kernel/kernel.py 4 + +++ b/bash_kernel/kernel.py 5 + @@ -88,7 +88,7 @@ class BashKernel(Kernel): 6 + @property 7 + def banner(self): 8 + if self._banner is None: 9 + - self._banner = check_output(['bash', '--version']).decode('utf-8') 10 + + self._banner = check_output(['@bash@', '--version']).decode('utf-8') 11 + return self._banner 12 + 13 + language_info = {'name': 'bash', 14 + @@ -116,7 +116,7 @@ class BashKernel(Kernel): 15 + # source code there for comments and context for 16 + # understanding the code here. 17 + bashrc = os.path.join(os.path.dirname(pexpect.__file__), 'bashrc.sh') 18 + - child = pexpect.spawn("bash", ['--rcfile', bashrc], echo=False, 19 + + child = pexpect.spawn("@bash@", ['--rcfile', bashrc], echo=False, 20 + encoding='utf-8', codec_errors='replace') 21 + # Following comment stolen from upstream's REPLWrap: 22 + # If the user runs 'env', the value of PS1 will be in the output. To avoid
+58
pkgs/development/python-modules/bash-kernel/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , fetchpatch 5 + , flit-core 6 + , ipykernel 7 + , python 8 + , pexpect 9 + , bash 10 + , substituteAll 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "bash-kernel"; 15 + version = "0.9.1"; 16 + pyproject = true; 17 + 18 + src = fetchPypi { 19 + pname = "bash_kernel"; 20 + inherit version; 21 + hash = "sha256-AYPVPjYP+baEcQUqmiiagWIXMlFrA04njpcgtdFaFis="; 22 + }; 23 + 24 + patches = [ 25 + (substituteAll { 26 + src = ./bash-path.patch; 27 + bash = lib.getExe bash; 28 + }) 29 + ]; 30 + 31 + nativeBuildInputs = [ 32 + flit-core 33 + ]; 34 + 35 + propagatedBuildInputs = [ 36 + ipykernel 37 + pexpect 38 + ]; 39 + 40 + preBuild = '' 41 + export HOME=$TMPDIR 42 + ''; 43 + 44 + postInstall = '' 45 + ${python.pythonOnBuildForHost.interpreter} -m bash_kernel.install --prefix $out 46 + ''; 47 + 48 + # no tests 49 + doCheck = false; 50 + 51 + meta = with lib; { 52 + description = "Bash Kernel for Jupyter"; 53 + homepage = "https://github.com/takluyver/bash_kernel"; 54 + changelog = "https://github.com/takluyver/bash_kernel/releases/tag/${version}"; 55 + license = licenses.bsd3; 56 + maintainers = with maintainers; [ zimbatm ]; 57 + }; 58 + }
-59
pkgs/development/python-modules/bash_kernel/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , fetchpatch 5 - , flit-core 6 - , ipykernel 7 - , isPy27 8 - , python 9 - , pexpect 10 - , bash 11 - }: 12 - 13 - buildPythonPackage rec { 14 - pname = "bash_kernel"; 15 - version = "0.9.1"; 16 - format = "flit"; 17 - disabled = isPy27; 18 - 19 - src = fetchPypi { 20 - inherit pname version; 21 - sha256 = "sha256-AYPVPjYP+baEcQUqmiiagWIXMlFrA04njpcgtdFaFis="; 22 - }; 23 - 24 - patches = [ 25 - (fetchpatch { 26 - url = "https://patch-diff.githubusercontent.com/raw/takluyver/bash_kernel/pull/69.diff"; 27 - sha256 = "1qd7qjjmcph4dk6j0bl31h2fdmfiyyazvrc9xqqj8y21ki2sl33j"; 28 - }) 29 - ]; 30 - 31 - postPatch = '' 32 - substituteInPlace bash_kernel/kernel.py \ 33 - --replace "'bash'" "'${bash}/bin/bash'" \ 34 - --replace "\"bash\"" "'${bash}/bin/bash'" 35 - ''; 36 - 37 - nativeBuildInputs = [ flit-core ]; 38 - 39 - propagatedBuildInputs = [ ipykernel pexpect ]; 40 - 41 - # no tests 42 - doCheck = false; 43 - 44 - preBuild = '' 45 - export HOME=$TMPDIR 46 - ''; 47 - 48 - postInstall = '' 49 - ${python.pythonOnBuildForHost.interpreter} -m bash_kernel.install --prefix $out 50 - ''; 51 - 52 - meta = with lib; { 53 - description = "Bash Kernel for Jupyter"; 54 - homepage = "https://github.com/takluyver/bash_kernel"; 55 - changelog = "https://github.com/takluyver/bash_kernel/releases/tag/${version}"; 56 - license = licenses.bsd3; 57 - maintainers = with maintainers; [ zimbatm ]; 58 - }; 59 - }
+2
pkgs/development/python-modules/openrazer/daemon.nix
··· 11 11 , pyudev 12 12 , setproctitle 13 13 , wrapGAppsHook 14 + , notify2 14 15 }: 15 16 16 17 let ··· 39 40 pygobject3 40 41 pyudev 41 42 setproctitle 43 + notify2 42 44 ]; 43 45 44 46 postInstall = ''
+4 -2
pkgs/development/python-modules/pycardano/default.nix
··· 3 3 , fetchFromGitHub 4 4 # Python deps 5 5 , blockfrost-python 6 + , cachetools 6 7 , cbor2 7 8 , cose 8 9 , ecpy ··· 29 30 30 31 in buildPythonPackage rec { 31 32 pname = "pycardano"; 32 - version = "0.9.0"; 33 + version = "0.10.0"; 33 34 34 35 format = "pyproject"; 35 36 ··· 37 38 owner = "Python-Cardano"; 38 39 repo = "pycardano"; 39 40 rev = "v${version}"; 40 - hash = "sha256-KRlpGhEzABBh1YWCDcrpW4hyMOhEA1Rla9nh95qdVik="; 41 + hash = "sha256-LP/W8IC2del476fGFq10VMWwMrbAoCCcZOngA8unBM0="; 41 42 }; 42 43 43 44 propagatedBuildInputs = [ 44 45 blockfrost-python 46 + cachetools 45 47 cbor2 46 48 cose_0_9_dev8 47 49 ecpy
+3 -3
pkgs/development/python-modules/rich-argparse/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "rich-argparse"; 11 - version = "1.3.0"; 11 + version = "1.4.0"; 12 12 format = "pyproject"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "hamdanal"; 16 16 repo = "rich-argparse"; 17 - rev = "v${version}"; 18 - hash = "sha256-WAqFhH9gUwDZuORJ++fKjCmaCurdYpep3WPq68tWJ4U="; 17 + rev = "refs/tags/v${version}"; 18 + hash = "sha256-iQ8x8UM0zmb2qYUpSh6RSEaBMrDpwY0ZHaJ9GJqn4Hs="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/steamship/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "steamship"; 19 - version = "2.17.28"; 19 + version = "2.17.32"; 20 20 format = "pyproject"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-NdWQiHu5YDIEtL4zJj5Vydjmwq1b5aqVcmqIe7zYv3g="; 24 + hash = "sha256-dTpz2/XXu8patDnorg/36652j9VLUjE5uF2fVzbDjfI="; 25 25 }; 26 26 27 27 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/txtai/default.nix
··· 52 52 , unittestCheckHook 53 53 }: 54 54 let 55 - version = "6.1.0"; 55 + version = "6.2.0"; 56 56 api = [ aiohttp fastapi uvicorn ]; 57 57 # cloud = [ apache-libcloud ]; 58 58 console = [ rich ]; ··· 105 105 owner = "neuml"; 106 106 repo = "txtai"; 107 107 rev = "refs/tags/v${version}"; 108 - hash = "sha256-ZUMfDyebroa9r01bOUFYDyVjuNUqlPU88HBocp3YQJ4="; 108 + hash = "sha256-aWuY2z5DIVhZ5bRADhKSadCofIQQdLQAb52HnjPMS/4="; 109 109 }; 110 110 111 111 nativeBuildInputs = [
+6 -32
pkgs/development/tools/database/sqlcl/default.nix
··· 1 - { lib, stdenv, makeWrapper, requireFile, unzip, jdk }: 1 + { lib, stdenv, makeWrapper, fetchurl, unzip, jdk }: 2 2 3 - stdenv.mkDerivation rec { 3 + stdenv.mkDerivation (finalAttrs: { 4 4 pname = "sqlcl"; 5 5 version = "23.2.0.178.1027"; 6 6 7 - src = requireFile rec { 8 - url = "https://www.oracle.com/database/sqldeveloper/technologies/sqlcl/download/"; 9 - name = "sqlcl-${version}.zip"; 10 - message = '' 11 - This Nix expression requires that ${name} already be part of the store. To 12 - obtain it you need to 13 - 14 - - navigate to ${url} 15 - - make sure that it says "Version ${version}" above the list of downloads 16 - - if it does not, click on the "Previous Version" link below the 17 - download and repeat until the version is correct. This is necessary 18 - because as the time of this writing there exists no permanent link 19 - for the current version yet. 20 - Also consider updating this package yourself (you probably just need 21 - to change the `version` variable and update the sha256 to the one of 22 - the new file) or opening an issue at the nixpkgs repo. 23 - - click "Download" 24 - - sign in or create an oracle account if neccessary 25 - - on the next page, click the "${name}" link 26 - 27 - and then add the file to the Nix store using either: 28 - 29 - nix-store --add-fixed sha256 ${name} 30 - 31 - or 32 - 33 - nix-prefetch-url --type sha256 file:///path/to/${name} 34 - ''; 7 + src = fetchurl { 8 + url = "https://download.oracle.com/otn_software/java/sqldeveloper/sqlcl-${finalAttrs.version}.zip"; 35 9 hash = "sha256-wGqLlV88yYJrVblKzeG6VerfsEgCi1JQd49ONZmUB4Y="; 36 10 }; 37 11 ··· 58 32 also supporting your previously written SQL*Plus scripts. 59 33 ''; 60 34 homepage = "https://www.oracle.com/database/sqldeveloper/technologies/sqlcl/"; 61 - license = licenses.unfree; 35 + license = licenses.unfreeRedistributable; 62 36 platforms = [ "x86_64-linux" ]; 63 37 maintainers = with maintainers; [ misterio77 ]; 64 38 }; 65 - } 39 + })
+3 -3
pkgs/tools/audio/goxlr-utility/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "goxlr-utility"; 13 - version = "0.12.6"; 13 + version = "1.0.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "GoXLR-on-Linux"; 17 17 repo = "goxlr-utility"; 18 18 rev = "v${version}"; 19 - hash = "sha256-vvaKCsqncRhag8IrS0AIfNqNHGU2WIvFaYISEVfUB2Y="; 19 + hash = "sha256-QKL2iKfn05P20MwT+RAeVzUUyv6FWtxMWuBI+4MgXlQ="; 20 20 }; 21 21 22 - cargoHash = "sha256-Z57H5YeVYqlOaLRLaizVw8xTLstdjyXutnN7OgaUYOE="; 22 + cargoHash = "sha256-LVObMspxhZkK81BjolTZZwoeMunzVwdEWWJAt/aOjZA="; 23 23 24 24 buildInputs = [ 25 25 libpulseaudio
+1
pkgs/top-level/python-aliases.nix
··· 58 58 backports_tempfile = throw "backports_tempfile has been removed, since we no longer need to backport to python3.3"; # added 2023-07-28 59 59 backports_unittest-mock = throw "backports_unittest-mock has been removed, since we no longer need to backport to python3.2"; # added 2023-07-28 60 60 backports_weakref = throw "backports_weakref has been removed, since we no longer need to backport to python3.3"; # added 2023-07-28 61 + bash_kernel = bash-kernel; # added 2023-11-10 61 62 beancount_docverif = beancount-docverif; # added 2023-10-08 62 63 bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04 63 64 bip_utils = bip-utils; # 2023-10-08
+1 -1
pkgs/top-level/python-packages.nix
··· 1321 1321 1322 1322 basemap-data = callPackage ../development/python-modules/basemap-data { }; 1323 1323 1324 - bash_kernel = callPackage ../development/python-modules/bash_kernel { }; 1324 + bash-kernel = callPackage ../development/python-modules/bash-kernel { }; 1325 1325 1326 1326 bashlex = callPackage ../development/python-modules/bashlex { }; 1327 1327