From 73e0ef7fcf7c520f6916ca8184323f611d729537 Mon Sep 17 00:00:00 2001 From: Bruno Bigras Date: Wed, 5 Apr 2023 12:05:09 -0400 Subject: [PATCH 01/43] prometheus-cloudflare-exporter: init at 0.0.14 --- .../prometheus/cloudflare-exporter.nix | 23 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 24 insertions(+) create mode 100644 pkgs/servers/monitoring/prometheus/cloudflare-exporter.nix diff --git a/pkgs/servers/monitoring/prometheus/cloudflare-exporter.nix b/pkgs/servers/monitoring/prometheus/cloudflare-exporter.nix new file mode 100644 index 000000000000..860100a6ac47 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/cloudflare-exporter.nix @@ -0,0 +1,23 @@ +{ buildGoModule, fetchFromGitHub, lib }: + +buildGoModule rec { + pname = "cloudflare-exporter"; + version = "0.0.14"; + + src = fetchFromGitHub { + rev = version; + owner = "lablabs"; + repo = pname; + sha256 = "sha256-A7JnHx9yipTwv63287BqmGrJ3yQ21NhB1z7rrHe6Ok8="; + }; + + vendorSha256 = "sha256-B/+UTkoGAoJLMr+zdXXSC2CWGHx+Iu5E2qp4AA/nmHM="; + + meta = with lib; { + description = "Prometheus Cloudflare Exporter"; + homepage = "https://github.com/lablabs/cloudflare-exporter"; + license = licenses.asl20; + maintainers = with maintainers; [ bbigras ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8b5e0cef8582..53d8f51c0b70 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -25651,6 +25651,7 @@ with pkgs; prometheus-bird-exporter = callPackage ../servers/monitoring/prometheus/bird-exporter.nix { }; prometheus-bitcoin-exporter = callPackage ../servers/monitoring/prometheus/bitcoin-exporter.nix { }; prometheus-blackbox-exporter = callPackage ../servers/monitoring/prometheus/blackbox-exporter.nix { }; + prometheus-cloudflare-exporter = callPackage ../servers/monitoring/prometheus/cloudflare-exporter.nix { }; prometheus-collectd-exporter = callPackage ../servers/monitoring/prometheus/collectd-exporter.nix { }; prometheus-consul-exporter = callPackage ../servers/monitoring/prometheus/consul-exporter.nix { }; prometheus-dnsmasq-exporter = callPackage ../servers/monitoring/prometheus/dnsmasq-exporter.nix { }; From 89657bcfb4b34b10142129ac35bfbd06cb93ae04 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 24 Apr 2023 09:57:57 +0000 Subject: [PATCH 02/43] python310Packages.ytmusicapi: 0.25.1 -> 1.0.2 --- pkgs/development/python-modules/ytmusicapi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ytmusicapi/default.nix b/pkgs/development/python-modules/ytmusicapi/default.nix index 5bc5ece21861..8cb0c036e344 100644 --- a/pkgs/development/python-modules/ytmusicapi/default.nix +++ b/pkgs/development/python-modules/ytmusicapi/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "ytmusicapi"; - version = "0.25.1"; + version = "1.0.2"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-uc/fgDetSYaCRzff0SzfbRhs3TaKrfE2h6roWkkj8yQ="; + hash = "sha256-95i/7dSXOL7OgqrBWy2X8EV4zLFXLzR6NQy3BN9NDhA="; }; nativeBuildInputs = [ From fd955a683f7c768e259120db083b91fa361a14de Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Sun, 30 Apr 2023 15:14:32 +0800 Subject: [PATCH 03/43] libvisio: set strictDeps, remove unneeded configureFlags --- .../libraries/libvisio/default.nix | 26 +++++++++++++------ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/libvisio/default.nix b/pkgs/development/libraries/libvisio/default.nix index 42051fe66a63..cbba13f672e7 100644 --- a/pkgs/development/libraries/libvisio/default.nix +++ b/pkgs/development/libraries/libvisio/default.nix @@ -1,5 +1,18 @@ -{ lib, stdenv, fetchurl, boost, libwpd, libwpg, pkg-config, zlib, gperf -, librevenge, libxml2, icu, perl, cppunit, doxygen +{ lib +, stdenv +, fetchurl +, boost +, libwpd +, libwpg +, pkg-config +, zlib +, gperf +, librevenge +, libxml2 +, icu +, perl +, cppunit +, doxygen }: stdenv.mkDerivation rec { @@ -13,12 +26,9 @@ stdenv.mkDerivation rec { sha256 = "0k7adcbbf27l7n453cca1m6s9yj6qvb5j6bsg2db09ybf3w8vbwg"; }; - nativeBuildInputs = [ pkg-config cppunit doxygen ]; - buildInputs = [ boost libwpd libwpg zlib gperf librevenge libxml2 icu perl ]; - - configureFlags = [ - "--disable-werror" - ]; + strictDeps = true; + nativeBuildInputs = [ pkg-config doxygen perl gperf ]; + buildInputs = [ boost libwpd libwpg zlib librevenge libxml2 icu cppunit ]; doCheck = true; From 6fd16207940d7a6cc2621f172b5b21e7617c0d2a Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Sun, 30 Apr 2023 15:19:17 +0800 Subject: [PATCH 04/43] libvisio: add nickcao to maintainers --- pkgs/development/libraries/libvisio/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/libvisio/default.nix b/pkgs/development/libraries/libvisio/default.nix index cbba13f672e7..b9856e90edc9 100644 --- a/pkgs/development/libraries/libvisio/default.nix +++ b/pkgs/development/libraries/libvisio/default.nix @@ -37,5 +37,6 @@ stdenv.mkDerivation rec { homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libvisio"; license = licenses.mpl20; platforms = platforms.unix; + maintainers = with maintainers; [ nickcao ]; }; } From 93fa4b5910e877abfc61f9a12ca045fbe537a6ef Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 1 May 2023 04:20:00 +0000 Subject: [PATCH 05/43] norouter: build with Go 1.20 --- pkgs/top-level/all-packages.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5a46b6afe7f6..5d8fe272ebc6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32358,9 +32358,7 @@ with pkgs; normalize = callPackage ../applications/audio/normalize { }; - norouter = callPackage ../tools/networking/norouter { - buildGoModule = buildGo118Module; # tests fail with 1.19 - }; + norouter = callPackage ../tools/networking/norouter { }; nqptp = callPackage ../tools/networking/nqptp { }; From db0666b8dc8a47f1cbd752c238a8294e943af3d3 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 1 May 2023 04:20:00 +0000 Subject: [PATCH 06/43] ivy: 0.2.8 -> 0.2.10 --- pkgs/development/interpreters/ivy/default.nix | 8 +++++--- pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/interpreters/ivy/default.nix b/pkgs/development/interpreters/ivy/default.nix index 434b49527714..171b739bddff 100644 --- a/pkgs/development/interpreters/ivy/default.nix +++ b/pkgs/development/interpreters/ivy/default.nix @@ -2,19 +2,21 @@ buildGoModule rec { pname = "ivy"; - version = "0.2.8"; + version = "0.2.10"; src = fetchFromGitHub { rev = "v${version}"; owner = "robpike"; repo = "ivy"; - sha256 = "sha256-pb/dJfEXz13myT6XadCg0kKd+n9bcHNBc84ES+hDw2Y="; + hash = "sha256-6rZfBx6jKNOEnG+cmrzgvjUoCHQe+olPeX11qX8ep38="; }; - vendorSha256 = null; + vendorHash = null; subPackages = [ "." ]; + ldflags = [ "-s" "-w" ]; + meta = with lib; { homepage = "https://github.com/robpike/ivy"; description = "ivy, an APL-like calculator"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b71f0c6f1da8..0d929124eaee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16749,9 +16749,7 @@ with pkgs; io = callPackage ../development/interpreters/io { }; - ivy = callPackage ../development/interpreters/ivy { - buildGoModule = buildGo118Module; # tests fail with 1.19 - }; + ivy = callPackage ../development/interpreters/ivy { }; j = callPackage ../development/interpreters/j { stdenv = clangStdenv; From fd70aa16b13195ec8e2cb3117e4afcd192befcc4 Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Mon, 1 May 2023 12:24:59 +0300 Subject: [PATCH 07/43] exportarr: 1.3.1 -> 1.3.2 --- .../monitoring/prometheus/exportarr/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/exportarr/default.nix b/pkgs/servers/monitoring/prometheus/exportarr/default.nix index e8cd4a123427..bcfd2ebee475 100644 --- a/pkgs/servers/monitoring/prometheus/exportarr/default.nix +++ b/pkgs/servers/monitoring/prometheus/exportarr/default.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "exportarr"; - version = "1.3.1"; + version = "1.3.2"; src = fetchFromGitHub { owner = "onedr0p"; repo = "exportarr"; rev = "v${version}"; - sha256 = "sha256-QZI3tYh2HXBDlZJWHQUAl/Yeyc/qCZGcfyFHbjCHlbU="; + hash = "sha256-99ap7B5EfMhuSGmT/JNI+CTPv7lTdjxibC0ndYWyNoA="; }; vendorHash = "sha256-2Eb8FhbRu5M5u8HGa2bgAvZZkwHycBu8UiNKHG5/fFw="; @@ -25,8 +25,10 @@ buildGoModule rec { tags = lib.optionals stdenv.isLinux [ "netgo" ]; - # There are no tests for this package. - doCheck = false; + preCheck = '' + # Run all tests. + unset subPackages + ''; meta = with lib; { description = "AIO Prometheus Exporter for Sonarr, Radarr or Lidarr"; From 69deb715bbaa056c090812ef78786f4030627d80 Mon Sep 17 00:00:00 2001 From: Bruno Bigras Date: Mon, 1 May 2023 11:08:04 -0400 Subject: [PATCH 08/43] kopia: 0.12.1 -> 0.13.0 --- pkgs/tools/backup/kopia/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/backup/kopia/default.nix b/pkgs/tools/backup/kopia/default.nix index 786e4bd859d1..96708bfb6e65 100644 --- a/pkgs/tools/backup/kopia/default.nix +++ b/pkgs/tools/backup/kopia/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "kopia"; - version = "0.12.1"; + version = "0.13.0"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "sha256-5zocfkNHsTFl3Sjwkr7dGnDY+4WO20F5AMgjfFulNd0="; + sha256 = "sha256-wQZzFrrxLzJ16TOrhxBlUuz+eCdqW/PmHUTuJP1Wy9Y="; }; - vendorSha256 = "sha256-Xmd4Q2X0cur4XGEjy1ysEEQkNqch4G+jGkPnrepgP6g="; + vendorSha256 = "sha256-OeDgaO125y8eCQlm9Lv5RZlb1fNLTCplEQbpJ2KMVms="; doCheck = false; From 8ae7eef571459df734088cba11958adf6055d49b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 17:50:07 +0200 Subject: [PATCH 09/43] python310Packages.pyfume: init at 0.2.25 --- .../python-modules/pyfume/default.nix | 46 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 48 insertions(+) create mode 100644 pkgs/development/python-modules/pyfume/default.nix diff --git a/pkgs/development/python-modules/pyfume/default.nix b/pkgs/development/python-modules/pyfume/default.nix new file mode 100644 index 000000000000..308f5eeeb529 --- /dev/null +++ b/pkgs/development/python-modules/pyfume/default.nix @@ -0,0 +1,46 @@ +{ lib +, buildPythonPackage +, fetchPypi +, fst-pso +, numpy +, pandas +, pythonOlder +, scipy +, simpful +}: + +buildPythonPackage rec { + pname = "pyfume"; + version = "0.2.25"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchPypi { + pname = "pyFUME"; + inherit version; + hash = "sha256-uD1IHFyNd9yv3eyHPZ4pg6X2+rLTY5sYsQysuIXbvfA="; + }; + + propagatedBuildInputs = [ + fst-pso + numpy + pandas + scipy + simpful + ]; + + # Module has not test + doCheck = false; + + pythonImportsCheck = [ + "pyfume" + ]; + + meta = with lib; { + description = "A Python package for fuzzy model estimation"; + homepage = "https://github.com/CaroFuchs/pyFUME"; + license = with licenses; [ gpl3Only ]; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3f1f14656478..2b23cf7fa866 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8359,6 +8359,8 @@ self: super: with self; { pyfttt = callPackage ../development/python-modules/pyfttt { }; + pyfume = callPackage ../development/python-modules/pyfume { }; + pyfuse3 = callPackage ../development/python-modules/pyfuse3 { }; pyfxa = callPackage ../development/python-modules/pyfxa { }; From 7ca0c7b4f7ec40f20486c9b068546602f49b087e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 18:44:40 +0200 Subject: [PATCH 10/43] python310Packages.gensim: 4.3.0 -> 4.3.1 Changelog: https://github.com/RaRe-Technologies/gensim/blob/4.3.1/CHANGELOG.md --- pkgs/development/python-modules/gensim/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/gensim/default.nix b/pkgs/development/python-modules/gensim/default.nix index 183454dac89d..fe3742886eb6 100644 --- a/pkgs/development/python-modules/gensim/default.nix +++ b/pkgs/development/python-modules/gensim/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "gensim"; - version = "4.3.0"; + version = "4.3.1"; format = "setuptools"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-ZL1+ximQIVh4gi6LJWnRg1BU9WzfU2AN3+mSfjHztI0="; + hash = "sha256-i18RwOalMICGtI6PaEEiOk+ho31RNoRhK37oVLUzAV8="; }; nativeBuildInputs = [ @@ -54,10 +54,8 @@ buildPythonPackage rec { meta = with lib; { description = "Topic-modelling library"; homepage = "https://radimrehurek.com/gensim/"; + changelog = "https://github.com/RaRe-Technologies/gensim/blob/${version}/CHANGELOG.md"; license = licenses.lgpl21Only; maintainers = with maintainers; [ jyp ]; - # python310 errors as: No matching distribution found for FuzzyTM>=0.4.0 - # python311 errors as: longintrepr.h: No such file or directory - broken = true; # At 2023-02-05 }; } From 616ba4ae5cad56b00154da4889925eb767b51ce8 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Fri, 21 Apr 2023 08:59:13 +0200 Subject: [PATCH 11/43] nixos/maddy: Add tls option --- .../manual/release-notes/rl-2305.section.md | 4 +- nixos/modules/services/mail/maddy.nix | 83 +++++++++++++++- nixos/tests/all-tests.nix | 2 +- nixos/tests/maddy/default.nix | 6 ++ nixos/tests/maddy/tls.nix | 94 +++++++++++++++++++ .../{maddy.nix => maddy/unencrypted.nix} | 4 +- 6 files changed, 186 insertions(+), 7 deletions(-) create mode 100644 nixos/tests/maddy/default.nix create mode 100644 nixos/tests/maddy/tls.nix rename nixos/tests/{maddy.nix => maddy/unencrypted.nix} (95%) diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md index 601109ccee5e..75915870ca77 100644 --- a/nixos/doc/manual/release-notes/rl-2305.section.md +++ b/nixos/doc/manual/release-notes/rl-2305.section.md @@ -292,7 +292,9 @@ In addition to numerous new and upgraded packages, this release has the followin replacement. It stores backups as volume dump files and thus better integrates into contemporary backup solutions. -- `services.maddy` now allows to configure users and their credentials using `services.maddy.ensureCredentials`. +- `services.maddy` got several updates: + - Configuration of users and their credentials using `services.maddy.ensureCredentials`. + - Configuration of TLS key and certificate files using `services.maddy.tls`. - The `dnsmasq` service now takes configuration via the `services.dnsmasq.settings` attribute set. The option diff --git a/nixos/modules/services/mail/maddy.nix b/nixos/modules/services/mail/maddy.nix index d0b525bcb002..e11a18cc1428 100644 --- a/nixos/modules/services/mail/maddy.nix +++ b/nixos/modules/services/mail/maddy.nix @@ -13,8 +13,6 @@ let # configuration here https://github.com/foxcpp/maddy/blob/master/maddy.conf # Do not use this in production! - tls off - auth.pass_table local_authdb { table sql_table { driver sqlite3 @@ -35,6 +33,7 @@ let } optional_step file /etc/maddy/aliases } + msgpipeline local_routing { destination postmaster $(local_domains) { modify { @@ -215,6 +214,63 @@ in { ''; }; + tls = { + loader = mkOption { + type = with types; nullOr (enum [ "file" "off" ]); + default = "off"; + description = lib.mdDoc '' + TLS certificates are obtained by modules called "certificate + loaders". Currently only the file loader is supported which reads + certificates from files specifying the options `keyPaths` and + `certPaths`. + ''; + }; + + certificates = mkOption { + type = with types; listOf (submodule { + options = { + keyPath = mkOption { + type = types.path; + example = "/etc/ssl/mx1.example.org.key"; + description = lib.mdDoc '' + Path to the private key used for TLS. + ''; + }; + certPath = mkOption { + type = types.path; + example = "/etc/ssl/mx1.example.org.crt"; + description = lib.mdDoc '' + Path to the certificate used for TLS. + ''; + }; + }; + }); + default = []; + example = lib.literalExpression '' + [{ + keyPath = "/etc/ssl/mx1.example.org.key"; + certPath = "/etc/ssl/mx1.example.org.crt"; + }] + ''; + description = lib.mdDoc '' + A list of attribute sets containing paths to TLS certificates and + keys. Maddy will use SNI if multiple pairs are selected. + ''; + }; + + extraConfig = mkOption { + type = with types; nullOr lines; + description = lib.mdDoc '' + Arguments for the specific certificate loader. Note that Maddy uses + secure defaults for the TLS configuration so there is no need to + change anything in most cases. + See [upstream manual](https://maddy.email/reference/tls/) for + available options. + ''; + default = ""; + }; + }; + openFirewall = mkOption { type = types.bool; default = false; @@ -224,7 +280,7 @@ in { }; ensureAccounts = mkOption { - type = types.listOf types.str; + type = with types; listOf str; default = []; description = lib.mdDoc '' List of IMAP accounts which get automatically created. Note that for @@ -270,6 +326,16 @@ in { config = mkIf cfg.enable { + assertions = [{ + assertion = cfg.tls.loader == "file" -> cfg.tls.certificates != []; + message = '' + If maddy is configured to use TLS, tls.certificates with attribute sets + of certPath and keyPath must be provided. + Read more about obtaining TLS certificates here: + https://maddy.email/tutorials/setting-up/#tls-certificates + ''; + }]; + systemd = { packages = [ pkgs.maddy ]; @@ -318,6 +384,17 @@ in { $(primary_domain) = ${cfg.primaryDomain} $(local_domains) = ${toString cfg.localDomains} hostname ${cfg.hostname} + + ${if (cfg.tls.loader == "file") then '' + tls file ${concatStringsSep " " ( + map (x: x.certPath + " " + x.keyPath + ) cfg.tls.certificates)} ${optionalString (cfg.tls.extraConfig != "") '' + { ${cfg.tls.extraConfig} } + ''} + '' else if (cfg.tls.loader == "off") then '' + tls off + '' else ""} + ${cfg.config} ''; }; diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 5b802fb26304..6e45dcc9e503 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -390,7 +390,7 @@ in { lxd-image-server = handleTest ./lxd-image-server.nix {}; #logstash = handleTest ./logstash.nix {}; lorri = handleTest ./lorri/default.nix {}; - maddy = handleTest ./maddy.nix {}; + maddy = discoverTests (import ./maddy { inherit handleTest; }); maestral = handleTest ./maestral.nix {}; magic-wormhole-mailbox-server = handleTest ./magic-wormhole-mailbox-server.nix {}; magnetico = handleTest ./magnetico.nix {}; diff --git a/nixos/tests/maddy/default.nix b/nixos/tests/maddy/default.nix new file mode 100644 index 000000000000..043906863e64 --- /dev/null +++ b/nixos/tests/maddy/default.nix @@ -0,0 +1,6 @@ +{ handleTest }: + +{ + unencrypted = handleTest ./unencrypted.nix { }; + tls = handleTest ./tls.nix { }; +} diff --git a/nixos/tests/maddy/tls.nix b/nixos/tests/maddy/tls.nix new file mode 100644 index 000000000000..44da4cf2a3cf --- /dev/null +++ b/nixos/tests/maddy/tls.nix @@ -0,0 +1,94 @@ +import ../make-test-python.nix ({ pkgs, ... }: +let + certs = import ../common/acme/server/snakeoil-certs.nix; + domain = certs.domain; +in { + name = "maddy-tls"; + meta = with pkgs.lib.maintainers; { maintainers = [ onny ]; }; + + nodes = { + server = { options, ... }: { + services.maddy = { + enable = true; + hostname = domain; + primaryDomain = domain; + openFirewall = true; + ensureAccounts = [ "postmaster@${domain}" ]; + ensureCredentials = { + # Do not use this in production. This will make passwords world-readable + # in the Nix store + "postmaster@${domain}".passwordFile = "${pkgs.writeText "postmaster" "test"}"; + }; + tls = { + loader = "file"; + certificates = [{ + certPath = "${certs.${domain}.cert}"; + keyPath = "${certs.${domain}.key}"; + }]; + }; + # Enable TLS listeners. Configuring this via the module is not yet + # implemented. + config = builtins.replaceStrings [ + "imap tcp://0.0.0.0:143" + "submission tcp://0.0.0.0:587" + ] [ + "imap tls://0.0.0.0:993 tcp://0.0.0.0:143" + "submission tls://0.0.0.0:465 tcp://0.0.0.0:587" + ] options.services.maddy.config.default; + }; + # Not covered by openFirewall yet + networking.firewall.allowedTCPPorts = [ 993 465 ]; + }; + + client = { nodes, ... }: { + security.pki.certificateFiles = [ + certs.ca.cert + ]; + networking.extraHosts = '' + ${nodes.server.networking.primaryIPAddress} ${domain} + ''; + environment.systemPackages = [ + (pkgs.writers.writePython3Bin "send-testmail" { } '' + import smtplib + import ssl + from email.mime.text import MIMEText + + context = ssl.create_default_context() + msg = MIMEText("Hello World") + msg['Subject'] = 'Test' + msg['From'] = "postmaster@${domain}" + msg['To'] = "postmaster@${domain}" + with smtplib.SMTP_SSL(host='${domain}', port=465, context=context) as smtp: + smtp.login('postmaster@${domain}', 'test') + smtp.sendmail( + 'postmaster@${domain}', 'postmaster@${domain}', msg.as_string() + ) + '') + (pkgs.writers.writePython3Bin "test-imap" { } '' + import imaplib + + with imaplib.IMAP4_SSL('${domain}') as imap: + imap.login('postmaster@${domain}', 'test') + imap.select() + status, refs = imap.search(None, 'ALL') + assert status == 'OK' + assert len(refs) == 1 + status, msg = imap.fetch(refs[0], 'BODY[TEXT]') + assert status == 'OK' + assert msg[0][1].strip() == b"Hello World" + '') + ]; + }; + }; + + testScript = '' + start_all() + server.wait_for_unit("maddy.service") + server.wait_for_open_port(143) + server.wait_for_open_port(993) + server.wait_for_open_port(587) + server.wait_for_open_port(465) + client.succeed("send-testmail") + client.succeed("test-imap") + ''; +}) diff --git a/nixos/tests/maddy.nix b/nixos/tests/maddy/unencrypted.nix similarity index 95% rename from nixos/tests/maddy.nix rename to nixos/tests/maddy/unencrypted.nix index 742043033337..2420d461e4e7 100644 --- a/nixos/tests/maddy.nix +++ b/nixos/tests/maddy/unencrypted.nix @@ -1,5 +1,5 @@ -import ./make-test-python.nix ({ pkgs, ... }: { - name = "maddy"; +import ../make-test-python.nix ({ pkgs, ... }: { + name = "maddy-unencrypted"; meta = with pkgs.lib.maintainers; { maintainers = [ onny ]; }; nodes = { From 2b6b08f921a7024b82c644416df0d5dd6d156e70 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 19:29:26 +0200 Subject: [PATCH 12/43] python310Packages.fuzzytm: init at 2.0.5 --- .../python-modules/fuzzytm/default.nix | 46 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 48 insertions(+) create mode 100644 pkgs/development/python-modules/fuzzytm/default.nix diff --git a/pkgs/development/python-modules/fuzzytm/default.nix b/pkgs/development/python-modules/fuzzytm/default.nix new file mode 100644 index 000000000000..e7dae0d02ee1 --- /dev/null +++ b/pkgs/development/python-modules/fuzzytm/default.nix @@ -0,0 +1,46 @@ +{ lib +, buildPythonPackage +, fetchPypi +, gensim +, numpy +, pandas +, pyfume +, scipy +, pythonOlder +}: + +buildPythonPackage rec { + pname = "fuzzytm"; + version = "2.0.5"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchPypi { + pname = "FuzzyTM"; + inherit version; + hash = "sha256-IELkjd3/yc2lBYsLP6mms9LEcXOfVtNNooEKCMf9BtU="; + }; + + propagatedBuildInputs = [ + gensim + numpy + pandas + pyfume + scipy + ]; + + # Module has no tests + doCheck = false; + + pythonImportsCheck = [ + "FuzzyTM" + ]; + + meta = with lib; { + description = "Library for Fuzzy Topic Models"; + homepage = "https://github.com/ERijck/FuzzyTM"; + license = licenses.gpl2Only; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2b23cf7fa866..e95ce77cf00b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3804,6 +3804,8 @@ self: super: with self; { fuzzyfinder = callPackage ../development/python-modules/fuzzyfinder { }; + fuzzytm = callPackage ../development/python-modules/fuzzytm { }; + fuzzywuzzy = callPackage ../development/python-modules/fuzzywuzzy { }; fvs = callPackage ../development/python-modules/fvs { }; From fe3c7bc17e95a5ab86fe2a2c126335aebfe3e11f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 20:16:23 +0200 Subject: [PATCH 13/43] python310Packages.channels-redis: 4.0.0 -> 4.1.0 Diff: https://github.com/django/channels_redis/compare/4.0.0...4.1.0 --- pkgs/development/python-modules/channels-redis/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/channels-redis/default.nix b/pkgs/development/python-modules/channels-redis/default.nix index 9d24655c36f4..1c5f25091b6b 100644 --- a/pkgs/development/python-modules/channels-redis/default.nix +++ b/pkgs/development/python-modules/channels-redis/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "channels-redis"; - version = "4.0.0"; + version = "4.1.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "django"; repo = "channels_redis"; rev = version; - hash = "sha256-YiLNrMRroa8T4uPNwa5ussFoFYjyg31waGpBGhAETmY="; + hash = "sha256-Eid9aWlLNnqr3WAnsLe+Pz9gsugCsdDKi0+nFNF02CI="; }; buildInputs = [ From 7931cb3647b42c04aeef1dd4b91217a311936d7f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 20:19:34 +0200 Subject: [PATCH 14/43] python310Packages.channels-redis: add changelog to meta --- pkgs/development/python-modules/channels-redis/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/channels-redis/default.nix b/pkgs/development/python-modules/channels-redis/default.nix index 1c5f25091b6b..a495b389603d 100644 --- a/pkgs/development/python-modules/channels-redis/default.nix +++ b/pkgs/development/python-modules/channels-redis/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "django"; repo = "channels_redis"; - rev = version; + rev = "refs/tags/${version}"; hash = "sha256-Eid9aWlLNnqr3WAnsLe+Pz9gsugCsdDKi0+nFNF02CI="; }; @@ -54,6 +54,7 @@ buildPythonPackage rec { meta = with lib; { description = "Redis-backed ASGI channel layer implementation"; homepage = "https://github.com/django/channels_redis/"; + changelog = "https://github.com/django/channels_redis/blob/${version}/CHANGELOG.txt"; license = licenses.bsd3; maintainers = with maintainers; [ mmai ]; }; From 5564cf7e32d4f617d8e5533f9adab6294e694b2b Mon Sep 17 00:00:00 2001 From: rewine Date: Tue, 2 May 2023 03:08:34 +0800 Subject: [PATCH 15/43] wpsoffice: 11.1.0.11691 -> 11.1.0.11698 --- pkgs/applications/office/wpsoffice/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/office/wpsoffice/default.nix b/pkgs/applications/office/wpsoffice/default.nix index 0685f52820a3..f90dc8fdcaf2 100644 --- a/pkgs/applications/office/wpsoffice/default.nix +++ b/pkgs/applications/office/wpsoffice/default.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation rec { pname = "wpsoffice"; - version = "11.1.0.11691"; + version = "11.1.0.11698"; src = if useChineseVersion then fetchurl { url = "https://wps-linux-personal.wpscdn.cn/wps/download/ep/Linux2019/${lib.last (lib.splitString "." version)}/wps-office_${version}_amd64.deb"; - sha256 = "sha256-ubFYACnsMObde9TGp1tyHtG0n5NxYMFtEbY9KXj62No="; + sha256 = "sha256-m7BOE2IF2m75mV/4X3HY9UJcidL0S0biqkidddp4LbQ="; } else fetchurl { url = "https://wdl1.pcfg.cache.wpscdn.com/wpsdl/wpsoffice/download/linux/${lib.last (lib.splitString "." version)}/wps-office_${version}.XA_amd64.deb"; - sha256 = "sha256-F1foPaDd4YiAcCePleKsABjFzsb2Uv+Lkja+58pnquI="; + sha256 = "sha256-spqxQK/xTE8yFPmGbSbrDY1vSxkan2kwAWpCWIExhgs="; }; unpackCmd = "dpkg -x $src ."; From 856a549bae7ffc959070028672b12fd4df6f1f69 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 21:23:28 +0200 Subject: [PATCH 16/43] checkov: 2.3.209 -> 2.3.212 Diff: https://github.com/bridgecrewio/checkov/compare/refs/tags/2.3.209...2.3.212 Changelog: https://github.com/bridgecrewio/checkov/releases/tag/2.3.212 --- pkgs/development/tools/analysis/checkov/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix index 3b845b0a403b..61c0c66af2ac 100644 --- a/pkgs/development/tools/analysis/checkov/default.nix +++ b/pkgs/development/tools/analysis/checkov/default.nix @@ -22,14 +22,14 @@ with py.pkgs; buildPythonApplication rec { pname = "checkov"; - version = "2.3.209"; + version = "2.3.212"; format = "setuptools"; src = fetchFromGitHub { owner = "bridgecrewio"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-7Aj8uAO4/sy1GvG52KPdPXcV6eIjrX14bvTJvqDsWQQ="; + hash = "sha256-5x5kZJTECCXBbPEWIWTVUxvyvS7yO572pHGab7o9nR0="; }; patches = [ From 7b3d0a5e74c4da8fa6f5765f6c95787081e78181 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 21:30:11 +0200 Subject: [PATCH 17/43] python311Packages.datasets: 2.11.0 -> 2.12.0 Diff: https://github.com/huggingface/datasets/compare/refs/tags/2.11.0...2.12.0 Changelog: https://github.com/huggingface/datasets/releases/tag/2.12.0 --- pkgs/development/python-modules/datasets/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/datasets/default.nix b/pkgs/development/python-modules/datasets/default.nix index 31dea13d9819..6e02e4abe3a1 100644 --- a/pkgs/development/python-modules/datasets/default.nix +++ b/pkgs/development/python-modules/datasets/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { pname = "datasets"; - version = "2.11.0"; + version = "2.12.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -30,7 +30,7 @@ buildPythonPackage rec { owner = "huggingface"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-vnKd7KapejcZN1RHNMpH4rrpz2P2DcfiyI33I0wiE+0="; + hash = "sha256-o/LUzRmpM4tjiCh31KoQXzU1Z/p/91uamh7G4SGnxQM="; }; postPatch = '' From 4ee45a31931f91587c0d955c392e8ca4f73318e6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 21:44:47 +0200 Subject: [PATCH 18/43] python310Packages.datasette: 0.64.2 -> 0.64.3 --- pkgs/development/python-modules/datasette/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/datasette/default.nix b/pkgs/development/python-modules/datasette/default.nix index f552e3321615..5dafa583f114 100644 --- a/pkgs/development/python-modules/datasette/default.nix +++ b/pkgs/development/python-modules/datasette/default.nix @@ -29,7 +29,7 @@ buildPythonPackage rec { pname = "datasette"; - version = "0.64.2"; + version = "0.64.3"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -38,7 +38,7 @@ buildPythonPackage rec { owner = "simonw"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-AxIJUJzFEAvAV59hYDB3pb5/1rS9d7T0ltl6lVWTCrE="; + hash = "sha256-hUMaveScSGbiELvN2oo8Nf/jFvYXeLpxTONl1R4UOZU="; }; postPatch = '' From 6f44a0632a991775ee098e9a54d95b13cbd2115c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 21:49:55 +0200 Subject: [PATCH 19/43] python310Packages.invocations: 3.0.1 -> 3.0.2 Diff: https://github.com/pyinvoke/invocations/compare/3.0.1...3.0.2 --- pkgs/development/python-modules/invocations/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/invocations/default.nix b/pkgs/development/python-modules/invocations/default.nix index ec908b22b9b8..3ee21163e56e 100644 --- a/pkgs/development/python-modules/invocations/default.nix +++ b/pkgs/development/python-modules/invocations/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "invocations"; - version = "3.0.1"; + version = "3.0.2"; format = "setuptools"; src = fetchFromGitHub { owner = "pyinvoke"; repo = pname; rev = version; - hash = "sha256-G0sl2DCROxlTnW3lWKeGw4qDmnaeRC4xYf27d6YePjE="; + hash = "sha256-sXMxTOi0iCz7Zq0lXkpproUtkId5p/GCqP1TvgqYlME="; }; postPatch = '' From 216ce975ba58d4eab2e879280c78e8ee16d180fc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 21:55:08 +0200 Subject: [PATCH 20/43] python310Packages.glean-sdk: 52.2.0 -> 52.6.0 --- pkgs/development/python-modules/glean-sdk/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/glean-sdk/default.nix b/pkgs/development/python-modules/glean-sdk/default.nix index 7834688e15f2..1a3bc1133634 100644 --- a/pkgs/development/python-modules/glean-sdk/default.nix +++ b/pkgs/development/python-modules/glean-sdk/default.nix @@ -17,19 +17,19 @@ buildPythonPackage rec { pname = "glean-sdk"; - version = "52.2.0"; + version = "52.6.0"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-iW432YtZtRGUWia33Lsnu+aQuedhBJdh8dZ30FPg6Vk="; + hash = "sha256-TTV6oydUP2znEOm7KZElugNDfROnlPmyC19Ig1H8/wM="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; - hash = "sha256-/7qKIQglNKGveKFtPeqd35Mq2hH/20BGTgDBgip4PnI="; + hash = "sha256-Np2TfgKP3yfJqA4WZyyedGp9XtKJjDikUov5pvB/opk="; }; nativeBuildInputs = [ From 75fea21c44ed23ad363abc92004ef3ada16332f9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 21:55:29 +0200 Subject: [PATCH 21/43] python311Packages.datafusion: 22.0.0 -> 23.0.0 Diff: https://github.com/apache/arrow-datafusion-python/compare/22.0.0...23.0.0 --- pkgs/development/python-modules/datafusion/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/datafusion/default.nix b/pkgs/development/python-modules/datafusion/default.nix index b4d5292a8d8a..fab3ea7a554b 100644 --- a/pkgs/development/python-modules/datafusion/default.nix +++ b/pkgs/development/python-modules/datafusion/default.nix @@ -32,21 +32,21 @@ in buildPythonPackage rec { pname = "datafusion"; - version = "22.0.0"; + version = "23.0.0"; format = "pyproject"; src = fetchFromGitHub { name = "datafusion-source"; owner = "apache"; repo = "arrow-datafusion-python"; - rev = "22.0.0"; - hash = "sha256-EKurQ4h5IOTU3JiGN+MHrDciQUadUrywNRhnv9S/9iY="; + rev = "23.0.0"; + hash = "sha256-ndee7aNmoTtZyfl9UUXdNVHkp0GAuJWkyfZJyRrGwn8="; }; cargoDeps = rustPlatform.fetchCargoTarball { name = "datafusion-cargo-deps"; inherit src pname version; - hash = "sha256-0kfavTFqsQ1Uvg5nQw6VFGlvih8ysOyS2KGT4cTIsVI="; + hash = "sha256-eDweEc+7dDbF0WBi6M5XAPIiHRjlYAdf2eNJdwj4D7c="; }; nativeBuildInputs = with rustPlatform; [ From 611d0883038957b66a26bf4f8d96666f5db9d346 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 21:55:37 +0200 Subject: [PATCH 22/43] python310Packages.intake: 0.6.6 -> 0.6.8 Changelog: https://github.com/intake/intake/blob/0.6.8/docs/source/changelog.rst --- pkgs/development/python-modules/intake/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/intake/default.nix b/pkgs/development/python-modules/intake/default.nix index 687fe8e58e6b..f5386ecd7628 100644 --- a/pkgs/development/python-modules/intake/default.nix +++ b/pkgs/development/python-modules/intake/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { pname = "intake"; - version = "0.6.6"; + version = "0.6.8"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -35,7 +35,7 @@ buildPythonPackage rec { owner = pname; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-/VQKLmEpIOULTPpJKuVLyqqQVLKVhwVBoos9Q/upwQM="; + hash = "sha256-7A9wuuOQyGhdGj6T5VY+NrZjEOf/y8dCzSkHuPhNsKI="; }; propagatedBuildInputs = [ @@ -52,7 +52,7 @@ buildPythonPackage rec { nativeCheckInputs = [ intake-parquet pytestCheckHook - ] ++ passthru.optional-dependencies.server; + ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); passthru.optional-dependencies = { server = [ From 01d15621fe60f6dcb66145011871847fccae43c2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 22:01:13 +0200 Subject: [PATCH 23/43] python311Packages.datafusion: add changelog to meta --- pkgs/development/python-modules/datafusion/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/datafusion/default.nix b/pkgs/development/python-modules/datafusion/default.nix index fab3ea7a554b..da6e46a993a5 100644 --- a/pkgs/development/python-modules/datafusion/default.nix +++ b/pkgs/development/python-modules/datafusion/default.nix @@ -39,7 +39,7 @@ buildPythonPackage rec { name = "datafusion-source"; owner = "apache"; repo = "arrow-datafusion-python"; - rev = "23.0.0"; + rev = "refs/tags/${version}"; hash = "sha256-ndee7aNmoTtZyfl9UUXdNVHkp0GAuJWkyfZJyRrGwn8="; }; @@ -79,6 +79,7 @@ buildPythonPackage rec { that uses Apache Arrow as its in-memory format. ''; homepage = "https://arrow.apache.org/datafusion/"; + changelog = "https://github.com/apache/arrow-datafusion-python/blob/${version}/CHANGELOG.md"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ cpcloud ]; }; From c87e3dc91580e28224111d9275f0d7040181876e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 22:04:43 +0200 Subject: [PATCH 24/43] python310Packages.invocations: add changelog to meta - disable on unsupported Python releases - update postPatch section --- pkgs/development/python-modules/invocations/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/invocations/default.nix b/pkgs/development/python-modules/invocations/default.nix index 3ee21163e56e..ee0c2f061731 100644 --- a/pkgs/development/python-modules/invocations/default.nix +++ b/pkgs/development/python-modules/invocations/default.nix @@ -3,6 +3,7 @@ , blessings , fetchFromGitHub , invoke +, pythonOlder , releases , semantic-version , tabulate @@ -15,17 +16,18 @@ buildPythonPackage rec { version = "3.0.2"; format = "setuptools"; + disabled = pythonOlder "3.6"; + src = fetchFromGitHub { owner = "pyinvoke"; repo = pname; - rev = version; + rev = "refs/tags/${version}"; hash = "sha256-sXMxTOi0iCz7Zq0lXkpproUtkId5p/GCqP1TvgqYlME="; }; postPatch = '' substituteInPlace setup.py \ - --replace "semantic_version>=2.4,<2.7" "semantic_version" \ - --replace "tabulate==0.7.5" "tabulate" + --replace "semantic_version>=2.4,<2.7" "semantic_version" ''; propagatedBuildInputs = [ @@ -48,6 +50,7 @@ buildPythonPackage rec { meta = with lib; { description = "Common/best-practice Invoke tasks and collections"; homepage = "https://invocations.readthedocs.io/"; + changelog = "https://github.com/pyinvoke/invocations/blob/${version}/docs/changelog.rst"; license = licenses.bsd2; maintainers = with maintainers; [ samuela ]; }; From e07db3e3795205a024905685450630a27315c08d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 22:10:44 +0200 Subject: [PATCH 25/43] python310Packages.inform: 1.27 -> 1.28 Diff: https://github.com/KenKundert/inform/compare/refs/tags/v1.27...v1.28 --- pkgs/development/python-modules/inform/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/inform/default.nix b/pkgs/development/python-modules/inform/default.nix index 7dd4a5675cd7..69da3bcf02b3 100644 --- a/pkgs/development/python-modules/inform/default.nix +++ b/pkgs/development/python-modules/inform/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "inform"; - version = "1.27"; + version = "1.28"; format = "pyproject"; src = fetchFromGitHub { owner = "KenKundert"; repo = "inform"; rev = "refs/tags/v${version}"; - hash = "sha256-SvE+UAGpUomUBHlH4aYZ1BYmLp3BherRjosKsIaOA/s="; + hash = "sha256-RA8/or3HTS/rQmG4A/Eg5j24YElaTEpnHa1yksARVMQ="; }; nativeBuildInputs = [ From 92fa862d74e8991b0c43a719c7508c991f188f33 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 22:13:31 +0200 Subject: [PATCH 26/43] python310Packages.inform: add changelog to meta - disable on unsupported Python releases --- pkgs/development/python-modules/inform/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/inform/default.nix b/pkgs/development/python-modules/inform/default.nix index 69da3bcf02b3..a95e9e9cc8e8 100644 --- a/pkgs/development/python-modules/inform/default.nix +++ b/pkgs/development/python-modules/inform/default.nix @@ -6,6 +6,7 @@ , six , hypothesis , pytestCheckHook +, pythonOlder }: buildPythonPackage rec { @@ -13,6 +14,8 @@ buildPythonPackage rec { version = "1.28"; format = "pyproject"; + disabled = pythonOlder "3.7"; + src = fetchFromGitHub { owner = "KenKundert"; repo = "inform"; @@ -46,6 +49,7 @@ buildPythonPackage rec { allow you to simply and cleanly print different types of messages. ''; homepage = "https://inform.readthedocs.io"; + changelog = "https://github.com/KenKundert/inform/blob/v${version}/doc/releases.rst"; license = licenses.gpl3Only; maintainers = with maintainers; [ jeremyschlatter ]; }; From 6592c2723fa9e12cb9e71268320cf1294ebe9888 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 22:14:46 +0200 Subject: [PATCH 27/43] python310Packages.inquirer: 3.1.2 -> 3.1.3 Diff: https://github.com/magmax/python-inquirer/compare/refs/tags/v3.1.2...v3.1.3 Changelog: https://github.com/magmax/python-inquirer/releases/tag/v3.1.3 --- pkgs/development/python-modules/inquirer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/inquirer/default.nix b/pkgs/development/python-modules/inquirer/default.nix index 3ea584fbc03d..1d13d50804af 100644 --- a/pkgs/development/python-modules/inquirer/default.nix +++ b/pkgs/development/python-modules/inquirer/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "inquirer"; - version = "3.1.2"; + version = "3.1.3"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -28,7 +28,7 @@ buildPythonPackage rec { owner = "magmax"; repo = "python-inquirer"; rev = "refs/tags/v${version}"; - hash = "sha256-7kq0sZzPeCX7TA5Cl2rg6Uw+9jLz335a+tOrO0+Cyas="; + hash = "sha256-7GfHsCQgnDUdiM1z9YNdDuwMNy6rLjR1UTnZMgpQ5k4="; }; nativeBuildInputs = [ From 965ca25828ff1e88370ecf99fb8a4814e753d88a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 22:17:06 +0200 Subject: [PATCH 28/43] python310Packages.kornia: 0.6.11 -> 0.6.12 Diff: https://github.com/kornia/kornia/compare/refs/tags/v0.6.11...v0.6.12 --- pkgs/development/python-modules/kornia/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/kornia/default.nix b/pkgs/development/python-modules/kornia/default.nix index 3a3a0af8c33e..def02a80c456 100644 --- a/pkgs/development/python-modules/kornia/default.nix +++ b/pkgs/development/python-modules/kornia/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "kornia"; - version = "0.6.11"; + version = "0.6.12"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = pname; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-APqITIt2P+16qp27dwLoAq9vY5CYpd49IWfYHTcZTSI="; + hash = "sha256-qLJos1ivEws/jFK4j0Kp1ij9J9ZwCoHFRYXnlYxwPFY="; }; propagatedBuildInputs = [ From b3d0ead70e5e4531e668d69b443e43454dd10466 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 22:19:50 +0200 Subject: [PATCH 29/43] python310Packages.kornia: add changelog to meta --- pkgs/development/python-modules/kornia/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/kornia/default.nix b/pkgs/development/python-modules/kornia/default.nix index def02a80c456..c36540714acf 100644 --- a/pkgs/development/python-modules/kornia/default.nix +++ b/pkgs/development/python-modules/kornia/default.nix @@ -11,6 +11,7 @@ buildPythonPackage rec { pname = "kornia"; version = "0.6.12"; format = "pyproject"; + disabled = pythonOlder "3.7"; src = fetchFromGitHub { @@ -47,6 +48,7 @@ buildPythonPackage rec { meta = with lib; { homepage = "https://kornia.github.io/kornia"; + changelog = "https://github.com/kornia/kornia/releases/tag/v${version}"; description = "Differentiable computer vision library"; license = licenses.asl20; maintainers = with maintainers; [ bcdarwin ]; From 57cc5abf4afb093055e06089b89e0e8b14107963 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Mon, 1 May 2023 14:34:11 -0400 Subject: [PATCH 30/43] python310Packages.jupyter-ui-poll: init at 0.2.2 --- .../jupyter-ui-poll/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/jupyter-ui-poll/default.nix diff --git a/pkgs/development/python-modules/jupyter-ui-poll/default.nix b/pkgs/development/python-modules/jupyter-ui-poll/default.nix new file mode 100644 index 000000000000..2b6a62f886f0 --- /dev/null +++ b/pkgs/development/python-modules/jupyter-ui-poll/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, pythonOlder +, setuptools +, ipython +}: + +buildPythonPackage rec { + pname = "jupyter-ui-poll"; + version = "0.2.2"; + format = "pyproject"; + + disabled = pythonOlder "3.6"; + + src = fetchFromGitHub { + owner = "Kirill888"; + repo = "jupyter-ui-poll"; + rev = "refs/tags/v${version}"; + hash = "sha256-DWZFvzx0aNTmf1x8Rq19OT0PFRxdpKefWYFh8C116Fw"; + }; + + nativeBuildInputs = [ setuptools ]; + propagatedBuildInputs = [ + ipython + ]; + + doCheck = false; # no tests in package :( + pythonImportsCheck = [ "jupyter_ui_poll" ]; + + meta = with lib; { + description = "Block jupyter cell execution while interacting with widgets"; + homepage = "https://github.com/Kirill888/jupyter-ui-poll"; + changelog = "https://github.com/Kirill888/jupyter-ui-poll/releases/tag/v${version}"; + license = licenses.mit; + maintainers = with maintainers; [ bcdarwin ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3f1f14656478..02fe9ecd77c3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5195,6 +5195,8 @@ self: super: with self; { jupyter-server-ydoc = callPackage ../development/python-modules/jupyter-server-ydoc { }; + jupyter-ui-poll = callPackage ../development/python-modules/jupyter-ui-poll { }; + jupyter-ydoc = callPackage ../development/python-modules/jupyter-ydoc { }; jupyterhub = callPackage ../development/python-modules/jupyterhub { }; From 0fd3f2326368b2f5e40ad1203bf929db011c59ee Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Mon, 1 May 2023 15:18:15 -0400 Subject: [PATCH 31/43] python310Packages.ipyniivue: init at 1.0.2 --- .../python-modules/ipyniivue/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/ipyniivue/default.nix diff --git a/pkgs/development/python-modules/ipyniivue/default.nix b/pkgs/development/python-modules/ipyniivue/default.nix new file mode 100644 index 000000000000..da55df0ac3ee --- /dev/null +++ b/pkgs/development/python-modules/ipyniivue/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pythonOlder +, hatchling +, hatch-jupyter-builder +, ipywidgets +, jupyter-ui-poll +, pytestCheckHook +}: + +buildPythonPackage rec { + pname = "ipyniivue"; + version = "1.0.2"; + format = "pyproject"; + + disabled = pythonOlder "3.7"; + + src = fetchPypi { + inherit pname version; + hash = "sha256-vFbEV/ZMXvKZeQUR536OZQ/5uIkt4tOWcCGRPMdc34I"; + }; + + nativeBuildInputs = [ hatchling hatch-jupyter-builder ]; + + propagatedBuildInputs = [ ipywidgets jupyter-ui-poll ]; + + nativeCheckImports = [ pytestCheckHook ]; + pythonImportsCheck = [ "ipyniivue" ]; + + meta = with lib; { + description = "Show a nifti image in a webgl 2.0 canvas within a jupyter notebook cell"; + homepage = "https://github.com/niivue/ipyniivue"; + changelog = "https://github.com/niivue/ipyniivue/releases/tag/${version}"; + license = licenses.bsd3; + maintainers = with maintainers; [ bcdarwin ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 02fe9ecd77c3..da079a68e538 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4883,6 +4883,8 @@ self: super: with self; { ipydatawidgets = callPackage ../development/python-modules/ipydatawidgets { }; + ipyniivue = callPackage ../development/python-modules/ipyniivue { }; + ipykernel = callPackage ../development/python-modules/ipykernel { }; ipympl = callPackage ../development/python-modules/ipympl { }; From db3e78b8d3c0c6c8d5da77250c0675d95f4a9a1a Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 1 May 2023 17:04:56 -0400 Subject: [PATCH 32/43] rust-script: 0.26.0 -> 0.27.0 Diff: https://github.com/fornwall/rust-script/compare/0.26.0...0.27.0 Changelog: https://github.com/fornwall/rust-script/releases/tag/0.27.0 --- pkgs/development/tools/rust/rust-script/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/rust-script/default.nix b/pkgs/development/tools/rust/rust-script/default.nix index a1a99f838b7c..86564c0f94f6 100644 --- a/pkgs/development/tools/rust/rust-script/default.nix +++ b/pkgs/development/tools/rust/rust-script/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "rust-script"; - version = "0.26.0"; + version = "0.27.0"; src = fetchFromGitHub { owner = "fornwall"; repo = pname; rev = version; - sha256 = "sha256-2ZEFtpaKBhF8puYB5gqttrdxKI2zrm6wjukRM+mBeF0="; + sha256 = "sha256-noyef+G05749WqqqCH6qyVorCR4DRZTl38ftkU66IBQ="; }; - cargoSha256 = "sha256-HRT0PSI0x2I/zuKKDcn08cyBC8gxkC5XXRFle/Ayrkg="; + cargoSha256 = "sha256-L5uqckG+NbatpBTejZw/Xk+OGZqsJgzHRwCTh1FJHVw="; # tests require network access doCheck = false; From 0b9dd4a1b646fa9906885dd39da12ecf4c358768 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 23:06:12 +0200 Subject: [PATCH 33/43] python310Packages.chalice: 1.27.3 -> 1.28.0 Diff: https://github.com/aws/chalice/compare/refs/tags/1.27.3...1.28.0 Changelog: https://github.com/aws/chalice/blob/1.28.0/CHANGELOG.rst --- .../python-modules/chalice/default.nix | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/chalice/default.nix b/pkgs/development/python-modules/chalice/default.nix index 94145c938cb0..d0ced676ed60 100644 --- a/pkgs/development/python-modules/chalice/default.nix +++ b/pkgs/development/python-modules/chalice/default.nix @@ -16,6 +16,7 @@ , requests , setuptools , six +, typing-extensions , watchdog , websocket-client , wheel @@ -23,21 +24,22 @@ buildPythonPackage rec { pname = "chalice"; - version = "1.27.3"; + version = "1.28.0"; format = "setuptools"; + disabled = pythonOlder "3.7"; + src = fetchFromGitHub { owner = "aws"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-izzoYxzkaQqcEM5e8BhZeZIxtAGRDNH/qvqwvrx250s="; + hash = "sha256-m3pSD4fahBW6Yt/w07Co4fTZD7k6as5cPwoK5QSry6M="; }; postPatch = '' substituteInPlace setup.py \ - --replace "attrs>=19.3.0,<21.5.0" "attrs" \ --replace "inquirer>=2.7.0,<3.0.0" "inquirer" \ - --replace "pip>=9,<22.3" "pip" \ + --replace "pip>=9,<23.1" "pip" \ ''; propagatedBuildInputs = [ @@ -51,6 +53,7 @@ buildPythonPackage rec { pyyaml setuptools six + typing-extensions wheel watchdog ]; @@ -87,13 +90,20 @@ buildPythonPackage rec { # https://github.com/aws/chalice/issues/1850 "test_resolve_endpoint" "test_endpoint_from_arn" + # Tests require dist + "test_setup_tar_gz_hyphens_in_name" + "test_both_tar_gz" + "test_both_tar_bz2" ]; - pythonImportsCheck = [ "chalice" ]; + pythonImportsCheck = [ + "chalice" + ]; meta = with lib; { description = "Python Serverless Microframework for AWS"; homepage = "https://github.com/aws/chalice"; + changelog = "https://github.com/aws/chalice/blob/${version}/CHANGELOG.rst"; license = licenses.asl20; maintainers = with maintainers; [ costrouc ]; }; From b7956895ee73310cb88dc059a72d52ccde386854 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 23:29:00 +0200 Subject: [PATCH 34/43] python310Packages.pytest-emoji: init at 0.2.0 --- .../python-modules/pytest-emoji/default.nix | 49 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 51 insertions(+) create mode 100644 pkgs/development/python-modules/pytest-emoji/default.nix diff --git a/pkgs/development/python-modules/pytest-emoji/default.nix b/pkgs/development/python-modules/pytest-emoji/default.nix new file mode 100644 index 000000000000..1700c34fb37a --- /dev/null +++ b/pkgs/development/python-modules/pytest-emoji/default.nix @@ -0,0 +1,49 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, pytest +, pytestCheckHook +, pythonOlder +}: + +buildPythonPackage rec { + pname = "pytest-emoji"; + version = "0.2.0"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "hackebrot"; + repo = "pytest-emoji"; + rev = "refs/tags/${version}"; + hash = "sha256-GuKBbIIODDnMi9YMX3zR4Jc3cbK+Zibj1ZeWvYkUY24="; + }; + + buildInputs = [ + pytest + ]; + + nativeCheckInputs = [ + pytestCheckHook + ]; + + pythonImportsCheck = [ + "pytest_emoji" + ]; + + disabledTests = [ + # Test scompare CLI output + "test_emoji_disabled_by_default_verbose" + "test_emoji_enabled_verbose" + "test_emoji_enabled_custom_verbose" + ]; + + meta = with lib; { + description = "A pytest plugin that adds emojis to test result report"; + homepage = "https://github.com/hackebrot/pytest-emoji"; + changelog = "https://github.com/hackebrot/pytest-emoji/releases/tag/0.2.0"; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3f1f14656478..32aadc2fc053 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9332,6 +9332,8 @@ self: super: with self; { pytest-dotenv = callPackage ../development/python-modules/pytest-dotenv { }; + pytest-emoji = callPackage ../development/python-modules/pytest-emoji { }; + pytest-env = callPackage ../development/python-modules/pytest-env { }; pytest-error-for-skips = callPackage ../development/python-modules/pytest-error-for-skips { }; From dfb0349a78fc60be082db19aa885167d8f8e234b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 May 2023 23:44:58 +0200 Subject: [PATCH 35/43] python310Packages.strawberry-graphql: 0.159.0 -> 0.176.0 Changelog: https://github.com/strawberry-graphql/strawberry/blob/0.176.0/CHANGELOG.md --- .../strawberry-graphql/default.nix | 151 +++++++++++++++++- 1 file changed, 143 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/strawberry-graphql/default.nix b/pkgs/development/python-modules/strawberry-graphql/default.nix index 9d25284b9c25..6f4dfd7689f7 100644 --- a/pkgs/development/python-modules/strawberry-graphql/default.nix +++ b/pkgs/development/python-modules/strawberry-graphql/default.nix @@ -1,20 +1,56 @@ -{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch, poetry-core, pythonOlder -, click, backports-cached-property, graphql-core, pygments, python-dateutil, python-multipart, typing-extensions -, aiohttp, asgiref, chalice, django, fastapi, flask, pydantic, sanic, starlette, uvicorn +{ lib +, aiohttp +, asgiref +, backports-cached-property +, buildPythonPackage +, chalice +, channels +, click +, daphne +, django +, email-validator +, fastapi +, fetchFromGitHub +, fetchpatch +, flask +, freezegun +, graphql-core +, libcst +, mypy +, poetry-core +, pydantic +, pygments +, pyinstrument +, pytest-aiohttp +, pytest-asyncio +, pytest-django +, pytest-emoji +, pytest-flask +, pytest-snapshot +, pytestCheckHook +, python-dateutil +, python-multipart +, pythonOlder +, rich +, sanic +, sanic-testing +, starlette +, typing-extensions +, uvicorn }: buildPythonPackage rec { pname = "strawberry-graphql"; - version = "0.159.0"; + version = "0.176.0"; format = "pyproject"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "strawberry-graphql"; repo = "strawberry"; rev = "refs/tags/${version}"; - hash = "sha256-3fyls1W2Vx0nDtp7mta/8QeKM6RRsAbw3dWOnH1/jk0="; + hash = "sha256-e61wLFqc3HLCWUiVW3Gzbay1Oi8b7HsLT3+jPnbA4YY="; }; patches = [ @@ -25,22 +61,121 @@ buildPythonPackage rec { }) ]; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace " --emoji --mypy-ini-file=mypy.ini --benchmark-disable" "" \ + ''; + nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ - click backports-cached-property graphql-core pygments python-dateutil python-multipart typing-extensions - aiohttp asgiref chalice django fastapi flask pydantic sanic starlette uvicorn + graphql-core + python-dateutil + typing-extensions ]; + passthru.optional-dependencies = { + aiohttp = [ + aiohttp + pytest-aiohttp + ]; + asgi = [ + starlette + python-multipart + ]; + debug = [ + rich + libcst + ]; + debug-server = [ + click + libcst + pygments + python-multipart + rich + starlette + uvicorn + ]; + django = [ + django + pytest-django + asgiref + ]; + channels = [ + channels + asgiref + ]; + flask = [ + flask + pytest-flask + ]; + # opentelemetry = [ + # opentelemetry-api + # opentelemetry-sdk + # ]; + pydantic = [ + pydantic + ]; + sanic = [ + sanic + ]; + fastapi = [ + fastapi + python-multipart + ]; + chalice = [ + chalice + ]; + cli = [ + click + pygments + rich + libcst + ]; + # starlite = [ + # starlite + # ]; + pyinstrument = [ + pyinstrument + ]; + }; + + nativeCheckInputs = [ + daphne + email-validator + freezegun + mypy + pytest-asyncio + pytest-emoji + pytest-snapshot + pytestCheckHook + sanic-testing + ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); + pythonImportsCheck = [ "strawberry" ]; + disabledTestPaths = [ + "tests/benchmarks/" + "tests/cli/" + "tests/django/test_dataloaders.py" + "tests/exceptions/" + "tests/http/" + "tests/schema/extensions/" + "tests/schema/test_dataloaders.py" + "tests/schema/test_lazy/" + "tests/starlite/" + "tests/test_dataloaders.py" + "tests/utils/test_pretty_print.py" + ]; + meta = with lib; { description = "A GraphQL library for Python that leverages type annotations"; homepage = "https://strawberry.rocks"; + changelog = "https://github.com/strawberry-graphql/strawberry/blob/${version}/CHANGELOG.md"; license = with licenses; [ mit ]; maintainers = with maintainers; [ izorkin ]; }; From 70ae8a5df99d4ade4c2b43980912059a0e680318 Mon Sep 17 00:00:00 2001 From: Tom Hall Date: Mon, 1 May 2023 12:17:32 +0100 Subject: [PATCH 36/43] arianna: 1.0.0 -> 1.0.1 --- pkgs/applications/misc/arianna/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/arianna/default.nix b/pkgs/applications/misc/arianna/default.nix index 0c937e532911..cf5ff876bd42 100644 --- a/pkgs/applications/misc/arianna/default.nix +++ b/pkgs/applications/misc/arianna/default.nix @@ -19,14 +19,14 @@ mkDerivation rec { pname = "arianna"; - version = "1.0.0"; + version = "1.0.1"; src = fetchFromGitLab { domain = "invent.kde.org"; owner = "graphics"; repo = "arianna"; rev = "v${version}"; - hash = "sha256-X3PDGWsQ8Alj5fisZC1tTHQDLPmjtiLw0X9gMvh5KFI="; + hash = "sha256-IETqKVIWeICFgqmBSVz8ea8100hHGXIo5S3O0OaIC04="; }; nativeBuildInputs = [ From 91c65c938b91c943e92835b0c06a941fc5a46a32 Mon Sep 17 00:00:00 2001 From: Alex Wied Date: Mon, 1 May 2023 18:59:12 -0400 Subject: [PATCH 37/43] tl-expected: 2023-02-15 -> 1.1.0 --- pkgs/development/libraries/tl-expected/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/tl-expected/default.nix b/pkgs/development/libraries/tl-expected/default.nix index 79af37f58e6f..68550b5ab474 100644 --- a/pkgs/development/libraries/tl-expected/default.nix +++ b/pkgs/development/libraries/tl-expected/default.nix @@ -1,15 +1,14 @@ { lib, stdenv, fetchFromGitHub, cmake }: stdenv.mkDerivation rec { - pname = "tl-expected-unstable"; - version = "2023-02-15"; # 37 commits ahead of version 1.0.0 + pname = "tl-expected"; + version = "1.1.0"; src = fetchFromGitHub { owner = "TartanLlama"; repo = "expected"; - rev = "9d812f5e3b5bc68023f6e31d29489cdcaacef606"; - fetchSubmodules = true; - hash = "sha256-ZokcGQgHH37nmTMLmxFcun4S1RjXuXb9NfWHet8Fbc4="; + rev = "v${version}"; + hash = "sha256-AuRU8VI5l7Th9fJ5jIc/6mPm0Vqbbt6rY8QCCNDOU50="; }; nativeBuildInputs = [ cmake ]; From 5104455e902198d6404e9354525bd7a6db921d98 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 1 May 2023 19:17:45 -0400 Subject: [PATCH 38/43] ruff: 0.0.262 -> 0.0.263 Diff: https://github.com/charliermarsh/ruff/compare/v0.0.262...v0.0.263 Changelog: https://github.com/charliermarsh/ruff/releases/tag/v0.0.263 --- pkgs/development/tools/ruff/Cargo.lock | 748 +++++++++++++++--------- pkgs/development/tools/ruff/default.nix | 4 +- 2 files changed, 476 insertions(+), 276 deletions(-) diff --git a/pkgs/development/tools/ruff/Cargo.lock b/pkgs/development/tools/ruff/Cargo.lock index 4be6d60217fb..6b87f9ec4f3e 100644 --- a/pkgs/development/tools/ruff/Cargo.lock +++ b/pkgs/development/tools/ruff/Cargo.lock @@ -34,6 +34,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "aho-corasick" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" +dependencies = [ + "memchr", +] + [[package]] name = "android_system_properties" version = "0.1.5" @@ -66,10 +75,59 @@ dependencies = [ ] [[package]] -name = "anyhow" -version = "1.0.69" +name = "anstream" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800" +checksum = "9e579a7752471abc2a8268df8b20005e3eadd975f585398f17efcfd8d4927371" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is-terminal", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" + +[[package]] +name = "anstyle-parse" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" +dependencies = [ + "windows-sys 0.48.0", +] + +[[package]] +name = "anstyle-wincon" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bcd8291a340dd8ac70e18878bc4501dd7b4ff970cfa21c207d36ece51ea88fd" +dependencies = [ + "anstyle", + "windows-sys 0.48.0", +] + +[[package]] +name = "anyhow" +version = "1.0.70" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" [[package]] name = "ascii" @@ -88,11 +146,12 @@ dependencies = [ [[package]] name = "assert_cmd" -version = "2.0.8" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9834fcc22e0874394a010230586367d4a3e9f11b560f469262678547e1d2575e" +checksum = "86d6b683edf8d1119fe420a94f8a7e389239666aa72e65495d91c00462510151" dependencies = [ - "bstr 1.3.0", + "anstyle", + "bstr 1.4.0", "doc-comment", "predicates", "predicates-core", @@ -153,6 +212,12 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c70beb79cbb5ce9c4f8e20849978f34225931f665bb49efa6982875a4d5facb3" + [[package]] name = "bstr" version = "0.2.17" @@ -166,9 +231,9 @@ dependencies = [ [[package]] name = "bstr" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ffdb39cb703212f3c11973452c2861b972f757b021158f3516ba10f2fa8b2c1" +checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09" dependencies = [ "memchr", "once_cell", @@ -178,9 +243,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.12.0" +version = "3.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" +checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8" [[package]] name = "cachedir" @@ -220,9 +285,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.23" +version = "0.4.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" +checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" dependencies = [ "iana-time-zone", "js-sys", @@ -266,7 +331,7 @@ version = "3.2.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" dependencies = [ - "bitflags", + "bitflags 1.3.2", "clap_lex 0.2.4", "indexmap", "textwrap", @@ -274,26 +339,35 @@ dependencies = [ [[package]] name = "clap" -version = "4.1.8" +version = "4.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3d7ae14b20b94cb02149ed21a86c423859cbe18dc7ed69845cace50e52b40a5" +checksum = "956ac1f6381d8d82ab4684768f89c0ea3afe66925ceadb4eeb3fc452ffc55d62" dependencies = [ - "bitflags", + "clap_builder", "clap_derive", - "clap_lex 0.3.1", - "is-terminal", "once_cell", +] + +[[package]] +name = "clap_builder" +version = "4.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84080e799e54cff944f4b4a4b0e71630b0e0443b25b985175c7dddc1a859b749" +dependencies = [ + "anstream", + "anstyle", + "bitflags 1.3.2", + "clap_lex 0.4.1", "strsim", - "termcolor", ] [[package]] name = "clap_complete" -version = "4.1.2" +version = "4.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd125be87bf4c255ebc50de0b7f4d2a6201e8ac3dc86e39c0ad081dc5e7236fe" +checksum = "1a19591b2ab0e3c04b588a0e04ddde7b9eaa423646d1b4a8092879216bf47473" dependencies = [ - "clap 4.1.8", + "clap 4.2.4", ] [[package]] @@ -302,7 +376,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "183495371ea78d4c9ff638bfc6497d46fed2396e4f9c50aebc1278a4a9919a3d" dependencies = [ - "clap 4.1.8", + "clap 4.2.4", "clap_complete", "clap_complete_fig", "clap_complete_nushell", @@ -310,11 +384,11 @@ dependencies = [ [[package]] name = "clap_complete_fig" -version = "4.1.1" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63a06158a72dbb088f864887b4409fd22600ba379f3cee3040f842234cc5c2d0" +checksum = "f3af28956330989baa428ed4d3471b853715d445c62de21b67292e22cf8a41fa" dependencies = [ - "clap 4.1.8", + "clap 4.2.4", "clap_complete", ] @@ -324,21 +398,20 @@ version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c7fa41f5e6aa83bd151b70fd0ceaee703d68cd669522795dc812df9edad1252c" dependencies = [ - "clap 4.1.8", + "clap 4.2.4", "clap_complete", ] [[package]] name = "clap_derive" -version = "4.1.8" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44bec8e5c9d09e439c4335b1af0abaab56dcf3b94999a936e1bb47b9134288f0" +checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" dependencies = [ "heck", - "proc-macro-error", "proc-macro2", "quote", - "syn", + "syn 2.0.15", ] [[package]] @@ -352,18 +425,15 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.3.1" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade" -dependencies = [ - "os_str_bytes", -] +checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" [[package]] name = "clearscreen" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41aa24cc5e1d6b3fc49ad4cd540b522fedcbe88bc6f259ff16e20e7010b6f8c7" +checksum = "72f3f22f1a586604e62efd23f78218f3ccdecf7a33c4500db2d37d85a24fe994" dependencies = [ "nix", "terminfo", @@ -382,6 +452,12 @@ dependencies = [ "unicode-width", ] +[[package]] +name = "colorchoice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + [[package]] name = "colored" version = "2.0.0" @@ -423,9 +499,9 @@ dependencies = [ [[package]] name = "console_log" -version = "0.2.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "878ad067d4089144a36ee412d665916c665430eb84c0057b9987f424a5d15c03" +checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f" dependencies = [ "log", "web-sys", @@ -433,9 +509,9 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "crc32fast" @@ -484,9 +560,9 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.6" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" +checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" dependencies = [ "cfg-if", "crossbeam-utils", @@ -494,9 +570,9 @@ dependencies = [ [[package]] name = "crossbeam-deque" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" +checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" dependencies = [ "cfg-if", "crossbeam-epoch", @@ -505,9 +581,9 @@ dependencies = [ [[package]] name = "crossbeam-epoch" -version = "0.9.13" +version = "0.9.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" +checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" dependencies = [ "autocfg", "cfg-if", @@ -518,9 +594,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.14" +version = "0.8.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" +checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" dependencies = [ "cfg-if", ] @@ -538,14 +614,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" dependencies = [ "quote", - "syn", + "syn 1.0.109", ] [[package]] name = "cxx" -version = "1.0.91" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86d3488e7665a7a483b57e25bdd90d0aeb2bc7608c8d0346acf2ad3f1caf1d62" +checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93" dependencies = [ "cc", "cxxbridge-flags", @@ -555,9 +631,9 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.91" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48fcaf066a053a41a81dfb14d57d99738b767febb8b735c3016e469fac5da690" +checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b" dependencies = [ "cc", "codespan-reporting", @@ -565,24 +641,24 @@ dependencies = [ "proc-macro2", "quote", "scratch", - "syn", + "syn 2.0.15", ] [[package]] name = "cxxbridge-flags" -version = "1.0.91" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2ef98b8b717a829ca5603af80e1f9e2e48013ab227b68ef37872ef84ee479bf" +checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb" [[package]] name = "cxxbridge-macro" -version = "1.0.91" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "086c685979a698443656e5cf7856c95c642295a38599f12fb1ff76fb28d19892" +checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.15", ] [[package]] @@ -603,7 +679,16 @@ version = "4.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" dependencies = [ - "dirs-sys", + "dirs-sys 0.3.7", +] + +[[package]] +name = "dirs" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dece029acd3353e3a58ac2e3eb3c8d6c35827a892edc6cc4138ef9c33df46ecd" +dependencies = [ + "dirs-sys 0.4.0", ] [[package]] @@ -627,6 +712,17 @@ dependencies = [ "winapi", ] +[[package]] +name = "dirs-sys" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04414300db88f70d74c5ff54e50f9e1d1737d9a5b90f53fcf2e95ca2a9ab554b" +dependencies = [ + "libc", + "redox_users", + "windows-sys 0.45.0", +] + [[package]] name = "dirs-sys-next" version = "0.1.2" @@ -652,9 +748,9 @@ checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1" [[package]] name = "dyn-clone" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9b0705efd4599c15a38151f4721f7bc388306f61084d3bfd50bd07fbca5cb60" +checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30" [[package]] name = "either" @@ -664,9 +760,9 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" [[package]] name = "ena" -version = "0.14.0" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7402b94a93c24e742487327a7cd839dc9d36fec9de9fb25b09f2dae459f36c3" +checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" dependencies = [ "log", ] @@ -679,13 +775,13 @@ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" [[package]] name = "errno" -version = "0.2.8" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" +checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" dependencies = [ "errno-dragonfly", "libc", - "winapi", + "windows-sys 0.48.0", ] [[package]] @@ -709,23 +805,23 @@ dependencies = [ [[package]] name = "fern" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bdd7b0849075e79ee9a1836df22c717d1eba30451796fdc631b04565dd11e2a" +checksum = "d9f0c14694cbd524c8720dd69b0e3179344f04ebb5f90f2e4a440c6ea3b2f1ee" dependencies = [ "log", ] [[package]] name = "filetime" -version = "0.2.20" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412" +checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" dependencies = [ "cfg-if", "libc", - "redox_syscall", - "windows-sys 0.45.0", + "redox_syscall 0.2.16", + "windows-sys 0.48.0", ] [[package]] @@ -736,10 +832,10 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flake8-to-ruff" -version = "0.0.262" +version = "0.0.263" dependencies = [ "anyhow", - "clap 4.1.8", + "clap 4.2.4", "colored", "configparser", "once_cell", @@ -789,9 +885,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" +checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" dependencies = [ "cfg-if", "js-sys", @@ -812,8 +908,8 @@ version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" dependencies = [ - "aho-corasick", - "bstr 1.3.0", + "aho-corasick 0.7.20", + "bstr 1.4.0", "fnv", "log", "regex", @@ -872,16 +968,16 @@ checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" [[package]] name = "iana-time-zone" -version = "0.1.53" +version = "0.1.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" +checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "winapi", + "windows", ] [[package]] @@ -933,9 +1029,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.9.2" +version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ "autocfg", "hashbrown", @@ -947,7 +1043,7 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" dependencies = [ - "bitflags", + "bitflags 1.3.2", "inotify-sys", "libc", ] @@ -963,9 +1059,9 @@ dependencies = [ [[package]] name = "insta" -version = "1.28.0" +version = "1.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fea5b3894afe466b4bcf0388630fc15e11938a6074af0cd637c825ba2ec8a099" +checksum = "9a28d25139df397cbca21408bb742cf6837e04cdbebf1b07b760caf971d6a972" dependencies = [ "console", "lazy_static", @@ -985,12 +1081,13 @@ dependencies = [ [[package]] name = "io-lifetimes" -version = "1.0.5" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3" +checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" dependencies = [ + "hermit-abi 0.3.1", "libc", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -1003,19 +1100,19 @@ dependencies = [ "pmutil", "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] name = "is-terminal" -version = "0.4.4" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857" +checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" dependencies = [ "hermit-abi 0.3.1", "io-lifetimes", "rustix", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -1029,9 +1126,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.5" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" +checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" [[package]] name = "js-sys" @@ -1058,27 +1155,27 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587" dependencies = [ - "bitflags", + "bitflags 1.3.2", "libc", ] [[package]] name = "lalrpop" -version = "0.19.8" +version = "0.19.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b30455341b0e18f276fa64540aff54deafb54c589de6aca68659c63dd2d5d823" +checksum = "f34313ec00c2eb5c3c87ca6732ea02dcf3af99c3ff7a8fb622ffb99c9d860a87" dependencies = [ "ascii-canvas", - "atty", "bit-set", "diff", "ena", + "is-terminal", "itertools", "lalrpop-util", "petgraph", "pico-args", "regex", - "regex-syntax", + "regex-syntax 0.6.29", "string_cache", "term", "tiny-keccak", @@ -1087,9 +1184,9 @@ dependencies = [ [[package]] name = "lalrpop-util" -version = "0.19.8" +version = "0.19.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcf796c978e9b4d983414f4caedc9273aa33ee214c5b887bd55fde84c85d2dc4" +checksum = "e5c1f7869c94d214466c5fd432dfed12c379fd87786768d36455892d46b18edd" dependencies = [ "regex", ] @@ -1132,9 +1229,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.139" +version = "0.2.142" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" +checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317" [[package]] name = "libcst" @@ -1157,14 +1254,14 @@ version = "0.1.0" source = "git+https://github.com/charliermarsh/LibCST?rev=80e4c1399f95e5beb532fdd1e209ad2dbb470438#80e4c1399f95e5beb532fdd1e209ad2dbb470438" dependencies = [ "quote", - "syn", + "syn 1.0.109", ] [[package]] name = "libmimalloc-sys" -version = "0.1.30" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd8c7cbf8b89019683667e347572e6d55a7df7ea36b0c4ce69961b0cde67b174" +checksum = "43a558e3d911bc3c7bfc8c78bc580b404d6e51c1cefbf656e176a94b49b0df40" dependencies = [ "cc", "libc", @@ -1187,9 +1284,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.1.4" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" +checksum = "9b085a4f2cde5781fc4b1717f2e86c62f5cda49de7ba99a7c2eae02b61c9064c" [[package]] name = "lock_api" @@ -1233,22 +1330,28 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] name = "memoffset" -version = "0.7.1" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" +checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" dependencies = [ "autocfg", ] [[package]] name = "mimalloc" -version = "0.1.34" +version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dcb174b18635f7561a0c6c9fc2ce57218ac7523cf72c50af80e2d79ab8f3ba1" +checksum = "3d88dad3f985ec267a3fcb7a1726f5cb1a7e8cad8b646e70a84f967210df23da" dependencies = [ "libmimalloc-sys", ] +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + [[package]] name = "miniz_oxide" version = "0.6.2" @@ -1294,7 +1397,7 @@ version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg-if", "libc", "static_assertions", @@ -1308,12 +1411,12 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" [[package]] name = "nom" -version = "5.1.2" +version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ "memchr", - "version_check", + "minimal-lexical", ] [[package]] @@ -1322,7 +1425,7 @@ version = "5.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "58ea850aa68a06e48fdb069c0ec44d0d64c8dbffa49bf3b6f7f0a901fdea1ba9" dependencies = [ - "bitflags", + "bitflags 1.3.2", "crossbeam-channel", "filetime", "fsevent-sys", @@ -1397,9 +1500,9 @@ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" [[package]] name = "os_str_bytes" -version = "6.4.1" +version = "6.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" +checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267" [[package]] name = "output_vt100" @@ -1428,16 +1531,16 @@ checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" dependencies = [ "cfg-if", "libc", - "redox_syscall", + "redox_syscall 0.2.16", "smallvec", "windows-sys 0.45.0", ] [[package]] name = "paste" -version = "1.0.11" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba" +checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" [[package]] name = "path-absolutize" @@ -1492,9 +1595,9 @@ checksum = "9fa00462b37ead6d11a82c9d568b26682d78e0477dc02d1966c013af80969739" [[package]] name = "pep440_rs" -version = "0.3.1" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5daf676dd9ff1a39faf9c9da9c46f0dbb6211b21a1839a749f5510c24ceca3f" +checksum = "aac177a025c60a4dd25d638bf33e746d1ead5f7123f6650f35b4394c7ce1a104" dependencies = [ "lazy_static", "regex", @@ -1614,7 +1717,7 @@ checksum = "3894e5d549cccbe44afecf72922f277f603cd4bb0219c8342631ef18fffbe004" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -1631,10 +1734,11 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "predicates" -version = "2.1.5" +version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" +checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9" dependencies = [ + "anstyle", "difflib", "itertools", "predicates-core", @@ -1642,15 +1746,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.5" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72f883590242d3c6fc5bf50299011695fa6590c2c70eac95ee1bdb9a733ad1a2" +checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" [[package]] name = "predicates-tree" -version = "1.0.7" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d" +checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" dependencies = [ "predicates-core", "termtree", @@ -1677,7 +1781,7 @@ dependencies = [ "proc-macro-error-attr", "proc-macro2", "quote", - "syn", + "syn 1.0.109", "version_check", ] @@ -1694,9 +1798,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.51" +version = "1.0.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" +checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" dependencies = [ "unicode-ident", ] @@ -1726,9 +1830,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.23" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" +checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" dependencies = [ "proc-macro2", ] @@ -1797,7 +1901,16 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ - "bitflags", + "bitflags 1.3.2", +] + +[[package]] +name = "redox_syscall" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +dependencies = [ + "bitflags 1.3.2", ] [[package]] @@ -1807,19 +1920,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ "getrandom", - "redox_syscall", + "redox_syscall 0.2.16", "thiserror", ] [[package]] name = "regex" -version = "1.7.1" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" +checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" dependencies = [ - "aho-corasick", + "aho-corasick 1.0.1", "memchr", - "regex-syntax", + "regex-syntax 0.7.1", ] [[package]] @@ -1830,18 +1943,15 @@ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" [[package]] name = "regex-syntax" -version = "0.6.28" +version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] -name = "remove_dir_all" -version = "0.5.3" +name = "regex-syntax" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" -dependencies = [ - "winapi", -] +checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" [[package]] name = "result-like" @@ -1861,7 +1971,7 @@ dependencies = [ "pmutil", "proc-macro2", "quote", - "syn", + "syn 1.0.109", "syn-ext", ] @@ -1882,15 +1992,15 @@ dependencies = [ [[package]] name = "ruff" -version = "0.0.262" +version = "0.0.263" dependencies = [ "annotate-snippets 0.9.1", "anyhow", - "bitflags", + "bitflags 2.1.0", "chrono", - "clap 4.1.8", + "clap 4.2.4", "colored", - "dirs", + "dirs 5.0.0", "fern", "glob", "globset", @@ -1971,17 +2081,17 @@ dependencies = [ [[package]] name = "ruff_cli" -version = "0.0.262" +version = "0.0.263" dependencies = [ "annotate-snippets 0.9.1", "anyhow", "assert_cmd", "atty", "bincode", - "bitflags", + "bitflags 2.1.0", "cachedir", "chrono", - "clap 4.1.8", + "clap 4.2.4", "clap_complete_command", "clearscreen", "colored", @@ -2018,7 +2128,7 @@ name = "ruff_dev" version = "0.0.0" dependencies = [ "anyhow", - "clap 4.1.8", + "clap 4.2.4", "itertools", "libcst", "once_cell", @@ -2068,7 +2178,7 @@ dependencies = [ "itertools", "proc-macro2", "quote", - "syn", + "syn 2.0.15", "textwrap", ] @@ -2077,7 +2187,7 @@ name = "ruff_python_ast" version = "0.0.0" dependencies = [ "anyhow", - "bitflags", + "bitflags 2.1.0", "is-macro", "itertools", "log", @@ -2099,7 +2209,7 @@ name = "ruff_python_formatter" version = "0.0.0" dependencies = [ "anyhow", - "clap 4.1.8", + "clap 4.2.4", "insta", "is-macro", "itertools", @@ -2120,7 +2230,7 @@ dependencies = [ name = "ruff_python_semantic" version = "0.0.0" dependencies = [ - "bitflags", + "bitflags 2.1.0", "is-macro", "nohash-hasher", "ruff_python_ast", @@ -2155,7 +2265,7 @@ dependencies = [ "glob", "proc-macro2", "quote", - "syn", + "syn 2.0.15", ] [[package]] @@ -2206,16 +2316,16 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustix" -version = "0.36.8" +version = "0.37.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644" +checksum = "f79bef90eb6d984c72722595b5b1348ab39275a5e5123faca6863bf07d75a4e0" dependencies = [ - "bitflags", + "bitflags 1.3.2", "errno", "io-lifetimes", "libc", "linux-raw-sys", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -2245,7 +2355,7 @@ version = "0.2.0" source = "git+https://github.com/RustPython/RustPython.git?rev=c15f670f2c30cfae6b41a1874893590148c74bc4#c15f670f2c30cfae6b41a1874893590148c74bc4" dependencies = [ "ascii", - "bitflags", + "bitflags 1.3.2", "cfg-if", "hexf-parse", "itertools", @@ -2269,7 +2379,7 @@ name = "rustpython-compiler-core" version = "0.2.0" source = "git+https://github.com/RustPython/RustPython.git?rev=c15f670f2c30cfae6b41a1874893590148c74bc4#c15f670f2c30cfae6b41a1874893590148c74bc4" dependencies = [ - "bitflags", + "bitflags 1.3.2", "bstr 0.2.17", "itertools", "lz4_flex", @@ -2305,15 +2415,15 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.11" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" +checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" [[package]] name = "ryu" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" +checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" [[package]] name = "same-file" @@ -2345,7 +2455,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn", + "syn 1.0.109", ] [[package]] @@ -2362,9 +2472,9 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "scratch" -version = "1.0.3" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" +checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1" [[package]] name = "sct" @@ -2378,15 +2488,15 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.16" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" +checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" [[package]] name = "serde" -version = "1.0.152" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" +checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" dependencies = [ "serde_derive", ] @@ -2404,13 +2514,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.152" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" +checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.15", ] [[package]] @@ -2421,14 +2531,14 @@ checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] name = "serde_json" -version = "1.0.93" +version = "1.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" +checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" dependencies = [ "indexmap", "itoa", @@ -2447,20 +2557,20 @@ dependencies = [ [[package]] name = "serde_test" -version = "1.0.152" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3611210d2d67e3513204742004d6ac6f589e521861dabb0f649b070eea8bed9e" +checksum = "3c95a500e3923258f7fc3a16bf29934e403aef5ca1096e184d85e3b1926675e8" dependencies = [ "serde", ] [[package]] name = "shellexpand" -version = "3.0.0" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd1c7ddea665294d484c39fd0c0d2b7e35bbfe10035c5fe1854741a57f6880e1" +checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b" dependencies = [ - "dirs", + "dirs 5.0.0", ] [[package]] @@ -2501,9 +2611,9 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "string_cache" -version = "0.8.4" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" +checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" dependencies = [ "new_debug_unreachable", "once_cell", @@ -2537,7 +2647,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn", + "syn 1.0.109", ] [[package]] @@ -2551,27 +2661,37 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "syn" +version = "2.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "syn-ext" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b86cb2b68c5b3c078cac02588bc23f3c04bb828c5d3aedd17980876ec6a7be6" dependencies = [ - "syn", + "syn 1.0.109", ] [[package]] name = "tempfile" -version = "3.3.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" +checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" dependencies = [ "cfg-if", "fastrand", - "libc", - "redox_syscall", - "remove_dir_all", - "winapi", + "redox_syscall 0.3.5", + "rustix", + "windows-sys 0.45.0", ] [[package]] @@ -2596,11 +2716,11 @@ dependencies = [ [[package]] name = "terminfo" -version = "0.7.5" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da31aef70da0f6352dbcb462683eb4dd2bfad01cf3fc96cf204547b9a839a585" +checksum = "666cd3a6681775d22b200409aad3b089c5b99fb11ecdd8a204d9d62f8148498f" dependencies = [ - "dirs", + "dirs 4.0.0", "fnv", "nom", "phf", @@ -2609,42 +2729,42 @@ dependencies = [ [[package]] name = "termtree" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8" +checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test-case" -version = "3.0.0" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "679b019fb241da62cc449b33b224d19ebe1c6767b495569765115dd7f7f9fba4" +checksum = "2a1d6e7bde536b0412f20765b76e921028059adfd1b90d8974d33fd3c91b25df" dependencies = [ "test-case-macros", ] [[package]] name = "test-case-core" -version = "3.0.0" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72dc21b5887f4032c4656502d085dc28f2afbb686f25f216472bb0526f4b1b88" +checksum = "d10394d5d1e27794f772b6fc854c7e91a2dc26e2cbf807ad523370c2a59c0cee" dependencies = [ "cfg-if", "proc-macro-error", "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] name = "test-case-macros" -version = "3.0.0" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3786898e0be151a96f730fd529b0e8a10f5990fa2a7ea14e37ca27613c05190" +checksum = "eeb9a44b1c6a54c1ba58b152797739dba2a83ca74e18168a68c980eb142f9404" dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn", + "syn 1.0.109", "test-case-core", ] @@ -2661,22 +2781,22 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.38" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" +checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.38" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" +checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.15", ] [[package]] @@ -2756,9 +2876,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "toml" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7afcae9e3f0fe2c370fd4657108972cbb2fa9db1b9f84849cefd80741b01cb6" +checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" dependencies = [ "serde", "serde_spanned", @@ -2777,9 +2897,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.19.4" +version = "0.19.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a1eb0622d28f4b9c90adc4ea4b2b46b47663fde9ac5fafcb14a1369d5508825" +checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" dependencies = [ "indexmap", "serde", @@ -2808,7 +2928,7 @@ checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] @@ -2902,15 +3022,15 @@ dependencies = [ [[package]] name = "unicode-bidi" -version = "0.3.10" +version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" [[package]] name = "unicode-ident" -version = "1.0.6" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" +checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" [[package]] name = "unicode-linebreak" @@ -2985,10 +3105,16 @@ dependencies = [ ] [[package]] -name = "uuid" -version = "1.3.0" +name = "utf8parse" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + +[[package]] +name = "uuid" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b55a3fef2a1e3b3a00ce878640918820d3c51081576ac657d23af9fc7928fdb" [[package]] name = "version_check" @@ -3013,12 +3139,11 @@ dependencies = [ [[package]] name = "walkdir" -version = "2.3.2" +version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" +checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" dependencies = [ "same-file", - "winapi", "winapi-util", ] @@ -3055,7 +3180,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn", + "syn 1.0.109", "wasm-bindgen-shared", ] @@ -3089,7 +3214,7 @@ checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -3210,19 +3335,28 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "windows" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" +dependencies = [ + "windows-targets 0.48.0", +] + [[package]] name = "windows-sys" version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", ] [[package]] @@ -3231,71 +3365,137 @@ version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" dependencies = [ - "windows-targets", + "windows-targets 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.0", ] [[package]] name = "windows-targets" -version = "0.42.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" +dependencies = [ + "windows_aarch64_gnullvm 0.48.0", + "windows_aarch64_msvc 0.48.0", + "windows_i686_gnu 0.48.0", + "windows_i686_msvc 0.48.0", + "windows_x86_64_gnu 0.48.0", + "windows_x86_64_gnullvm 0.48.0", + "windows_x86_64_msvc 0.48.0", ] [[package]] name = "windows_aarch64_gnullvm" -version = "0.42.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" [[package]] name = "windows_aarch64_msvc" -version = "0.42.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" [[package]] name = "windows_i686_gnu" -version = "0.42.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" [[package]] name = "windows_i686_msvc" -version = "0.42.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" [[package]] name = "windows_x86_64_gnu" -version = "0.42.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" [[package]] name = "windows_x86_64_gnullvm" -version = "0.42.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" [[package]] name = "windows_x86_64_msvc" -version = "0.42.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "winnow" -version = "0.3.3" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faf09497b8f8b5ac5d3bb4d05c0a99be20f26fd3d5f2db7b0716e946d5103658" +checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" dependencies = [ "memchr", ] diff --git a/pkgs/development/tools/ruff/default.nix b/pkgs/development/tools/ruff/default.nix index 99aa917f48fa..eeb971918ebd 100644 --- a/pkgs/development/tools/ruff/default.nix +++ b/pkgs/development/tools/ruff/default.nix @@ -8,13 +8,13 @@ rustPlatform.buildRustPackage rec { pname = "ruff"; - version = "0.0.262"; + version = "0.0.263"; src = fetchFromGitHub { owner = "charliermarsh"; repo = pname; rev = "v${version}"; - hash = "sha256-G+Cz/5dL/5kOOJ1fGGecwGOiONYdwFWOPQ5KV0W2DVA="; + hash = "sha256-EhxevilIrcrM7wcuF39b4P4T8OpNwdyga+wAPatil8Q="; }; # We have to use importCargoLock here because `cargo vendor` currently doesn't support workspace From cba07817fd7678c4923c6a103b7a804c9e05487c Mon Sep 17 00:00:00 2001 From: happysalada Date: Mon, 1 May 2023 19:53:06 -0400 Subject: [PATCH 39/43] nodePackages: update to latest --- .../node-packages/node-packages.nix | 1483 ++++++++++------- 1 file changed, 846 insertions(+), 637 deletions(-) diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index 9ddb5e7cefdc..e8847af007b2 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -580,13 +580,13 @@ let sha512 = "TmB2K5UfpDpSbCNBBntXzKHcAk2EA3/P68jmWvmJvglVUdkO9V6kTAuXVe12+h6C4GK0ndwuCrHHtEVcL5t6pQ=="; }; }; - "@astrojs/compiler-1.3.2" = { + "@astrojs/compiler-1.4.0" = { name = "_at_astrojs_slash_compiler"; packageName = "@astrojs/compiler"; - version = "1.3.2"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-1.3.2.tgz"; - sha512 = "W/2Mdsq75ruK31dPVlXLdvAoknYDcm6+zXiFToSzQWI7wZqqR+51XTFgx90ojYbefk7z4VOJSVtZBz2pA82F5A=="; + url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-1.4.0.tgz"; + sha512 = "Vav3a32Ct+omowV9X9kDM2ghWAvFdjZkv5BdvBjZCKYbFVT6//IZApDIVbHI1UPuLuD2sKyLWx2T+E7clqUJdg=="; }; }; "@asyncapi/specs-4.3.0" = { @@ -5215,13 +5215,13 @@ let sha512 = "1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA=="; }; }; - "@eslint-community/regexpp-4.5.0" = { + "@eslint-community/regexpp-4.5.1" = { name = "_at_eslint-community_slash_regexpp"; packageName = "@eslint-community/regexpp"; - version = "4.5.0"; + version = "4.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.0.tgz"; - sha512 = "vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ=="; + url = "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz"; + sha512 = "Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ=="; }; }; "@eslint/eslintrc-0.4.3" = { @@ -5926,85 +5926,85 @@ let sha512 = "5D2qVpZrgpjtqU4eNOcWGp1gnUCgjfM+vKGE2y03kKN6z5EBhtx0qdRFbg8QuNNj8wXNoX93KJoYb+NqoxswmQ=="; }; }; - "@fluentui/date-time-utilities-8.5.7" = { + "@fluentui/date-time-utilities-8.5.8" = { name = "_at_fluentui_slash_date-time-utilities"; packageName = "@fluentui/date-time-utilities"; - version = "8.5.7"; + version = "8.5.8"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.5.7.tgz"; - sha512 = "+g6YWgI0LbsoPo03rCNRsZPP9uXlYVfCY/AdFTfAr3RiilLWIt9L21eRm0/vap/HEc4Jx+MoW8RpBg9U0i5PkA=="; + url = "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.5.8.tgz"; + sha512 = "8QkUZtoqEOeA9ePPntvQOAO/RS8UjqAqDaCPwKFcbETjz2qYdNEDH576RlSosZz+isUFKt1Y/UHiw0KOPMhMWw=="; }; }; - "@fluentui/dom-utilities-2.2.6" = { + "@fluentui/dom-utilities-2.2.7" = { name = "_at_fluentui_slash_dom-utilities"; packageName = "@fluentui/dom-utilities"; - version = "2.2.6"; + version = "2.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.2.6.tgz"; - sha512 = "yJOEiFj/TfR307hzZn15kNocC0P3j2BltrAJznhgXywMKJhIczATFTfj2len7YMHxLttnR5yDz/oYpyBLSk4rw=="; + url = "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.2.7.tgz"; + sha512 = "V+bW/WKR3ADGbBFw5hZqTY197RSz0tXm+gsdBj4iK4BJkWCRQYmj7ZLY+5pEAtfVJ7Z55zjYmLuzTpqGbCGxzg=="; }; }; - "@fluentui/font-icons-mdl2-8.5.13" = { + "@fluentui/font-icons-mdl2-8.5.14" = { name = "_at_fluentui_slash_font-icons-mdl2"; packageName = "@fluentui/font-icons-mdl2"; - version = "8.5.13"; + version = "8.5.14"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.13.tgz"; - sha512 = "3JjYN7lJZefpBdNPoQRFOiNpyVw+BOGynMkmYglnGjEWlg3uodawNi9lnKBODXCy31OHh900n9pAPFyNpdCbBg=="; + url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.14.tgz"; + sha512 = "a/zGlzf4PWbVXAK/39/hYoWxSdn4+akYr/FAC8yqVYB/vxz6vQ1vwXKu/jMlAaUYEnZwC0jYByWhXmrDj4t+NA=="; }; }; - "@fluentui/foundation-legacy-8.2.33" = { + "@fluentui/foundation-legacy-8.2.34" = { name = "_at_fluentui_slash_foundation-legacy"; packageName = "@fluentui/foundation-legacy"; - version = "8.2.33"; + version = "8.2.34"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.33.tgz"; - sha512 = "Z1Nl1hmyICAjTwaU2fvIGenzczRfyf0P3oaRniwac4gAa5MidE6QlpAkEcwCka2QEG/qUjcx/cMacDGLN/Dd0A=="; + url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.34.tgz"; + sha512 = "1FmUFUYyp6SaOA+o/lujvckTMP2fJDHTnNm7kj3EVKh2676aFrUcmMYknYXEngImdGIGjhj6xSinbLgulr8DsA=="; }; }; - "@fluentui/keyboard-key-0.4.6" = { + "@fluentui/keyboard-key-0.4.7" = { name = "_at_fluentui_slash_keyboard-key"; packageName = "@fluentui/keyboard-key"; - version = "0.4.6"; + version = "0.4.7"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.4.6.tgz"; - sha512 = "p59zLGs3ucDPc7ZVaPxVCaQsfNwERDt3n+yLE0w/FFBlPWJcOSkiZHIieMhqk5ur5YGzbgs9WppPrtxNga23fw=="; + url = "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.4.7.tgz"; + sha512 = "+ivm4+fcNZGiAf0YthGcDxOYDxHX2td+4BuhtznDLsMt27akx/eOuK9uF1ZgXpMsq0UncOIV6qOyWUgGuY31LA=="; }; }; - "@fluentui/merge-styles-8.5.7" = { + "@fluentui/merge-styles-8.5.8" = { name = "_at_fluentui_slash_merge-styles"; packageName = "@fluentui/merge-styles"; - version = "8.5.7"; + version = "8.5.8"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.7.tgz"; - sha512 = "t/mOQTigj51n7z6VPZ1nlb9getkzoLVhN0aUbOJUSD5qvu0gZqSBh7Y9xIP6QeYWF4q6wcZhEggo8HOgYqaWQw=="; + url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.8.tgz"; + sha512 = "wY+li6t7ByQml5duquqluTcQiQdBj7d+MgcM9WHKrmsEM3hEOy8qD5g9b9/EDUShGlL6jCwCFnxMjx4Fy6Tf0w=="; }; }; - "@fluentui/react-8.108.2" = { + "@fluentui/react-8.108.3" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "8.108.2"; + version = "8.108.3"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.108.2.tgz"; - sha512 = "wVJBFZFVNzaaLByPkz36oMDexS5Poi9LKSbzQdAXJMdm7IQDiz4vvPcz5fFxZaFZeTclWZmZmdUAkg5301TiXQ=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.108.3.tgz"; + sha512 = "1njuMAkCHJBtDrtWIOzfFeEnul0I1Scnnr/Y9xi3UNbZkYb+w1XwUCLpwWaj/d24sProWwsiC/OhcgSm/CQaXg=="; }; }; - "@fluentui/react-focus-8.8.19" = { + "@fluentui/react-focus-8.8.20" = { name = "_at_fluentui_slash_react-focus"; packageName = "@fluentui/react-focus"; - version = "8.8.19"; + version = "8.8.20"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.19.tgz"; - sha512 = "Gswx0aOazRVFJONmcsj5o6SI/ebWQeZyBAlOsdFeSUuK38aRlVy4DbwVQ+5tQ675u3wmf/+Ln2a0xCixOAVvWg=="; + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.20.tgz"; + sha512 = "8+Ozvf58rTCRyV+O+yw10EXrPDy27vCh5jGUbQZIkdJedtaLLAX/L+FFbFDxwQZbQloxPx9bBq7vTABHPBxtNg=="; }; }; - "@fluentui/react-hooks-8.6.20" = { + "@fluentui/react-hooks-8.6.21" = { name = "_at_fluentui_slash_react-hooks"; packageName = "@fluentui/react-hooks"; - version = "8.6.20"; + version = "8.6.21"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.20.tgz"; - sha512 = "vb90tgc0nGWvahE2zuPPtEpknIfAA0ABq7/ro7+CAcKgDx2sleGZKRGdzKXdYS026OxjQ8TN2K7/D3OI1v4Rjg=="; + url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.21.tgz"; + sha512 = "FhmndDWF00JMH+czFyREksUUP4F3BXVRBscPcXZI9gYL4BQ1wPAZnSTVo1uIkiysuo2BTMK4VMnaFRvj4pHHhQ=="; }; }; "@fluentui/react-portal-compat-context-9.0.5" = { @@ -6016,49 +6016,49 @@ let sha512 = "vgGvv74jPi/salcxv37TCm06lOFn44CfNLX5wZw5HQIe9LYGUw/J7vkaniwNIzmQZsn62Y+fVxDS6Sq5S823tA=="; }; }; - "@fluentui/react-window-provider-2.2.9" = { + "@fluentui/react-window-provider-2.2.10" = { name = "_at_fluentui_slash_react-window-provider"; packageName = "@fluentui/react-window-provider"; - version = "2.2.9"; + version = "2.2.10"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.9.tgz"; - sha512 = "BRa23ITjwUgewS9ynzCnW2bJIgaNHwhPUY0htLKcYSSv3fG7iib91B6FVC7QqmXDBTia00kqVul1TZz5G0qrlQ=="; + url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.10.tgz"; + sha512 = "MGn86ceK0pYrfgPIdNiyheE8nfO38jJqVjyNADZfdn6rm59mLR6aIHP7vlTsgolMWsVmz3C349HCNeH6F0dxJQ=="; }; }; - "@fluentui/set-version-8.2.6" = { + "@fluentui/set-version-8.2.7" = { name = "_at_fluentui_slash_set-version"; packageName = "@fluentui/set-version"; - version = "8.2.6"; + version = "8.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.2.6.tgz"; - sha512 = "zXIfscQ1ZAiEpHc5taMrDEtTP2NtPBGlz2HbOpZiQ3aj/xcnUT7nT73ctb+Q2bHIqlDCHEaFRQxy/HG6koGYAA=="; + url = "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.2.7.tgz"; + sha512 = "3w4dKv+bFBH7drL4hoNmbGZB3pLi5TqxPoZKhFvbYSwdEJPANzShGgwP1ccoNOkgRqsfRln/4d9xrzhoaE15Eg=="; }; }; - "@fluentui/style-utilities-8.9.6" = { + "@fluentui/style-utilities-8.9.7" = { name = "_at_fluentui_slash_style-utilities"; packageName = "@fluentui/style-utilities"; - version = "8.9.6"; + version = "8.9.7"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.9.6.tgz"; - sha512 = "glhexQzJNnLws66Tb7a0WPStYVE1tRy0QWwbtOdIRXsd/3CA1FZse76itss8/yqGakPin2PElkej/jTKpaRWew=="; + url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.9.7.tgz"; + sha512 = "2S2adiiA8E3ghxtdXtPeEajNpaC00aORB6a0nSwbBCD+7mmy+n/d3T5G5iW/fR/uvDHzcb50v2kT3UWakf02Eg=="; }; }; - "@fluentui/theme-2.6.25" = { + "@fluentui/theme-2.6.26" = { name = "_at_fluentui_slash_theme"; packageName = "@fluentui/theme"; - version = "2.6.25"; + version = "2.6.26"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.25.tgz"; - sha512 = "slp+Tk+FEDj6HtZNWzckEMPLZMYfe2bECz4hLj/aq2ok51f2ztVTM8rjjmiJjOAidcTirF/gdYVbayc/5MOKag=="; + url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.26.tgz"; + sha512 = "dzODGZ9wKw0pLxhTV37pifEFYu6ipPXp4FFmwiZnBZjS9lJFc/gx+UkL3Wer8RH3Jdk/9XUZYdCk868YmqudJg=="; }; }; - "@fluentui/utilities-8.13.9" = { + "@fluentui/utilities-8.13.10" = { name = "_at_fluentui_slash_utilities"; packageName = "@fluentui/utilities"; - version = "8.13.9"; + version = "8.13.10"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.9.tgz"; - sha512 = "8SkDFN+v3FZ2DNQtnRHnUxkY2tVQo6ojHVPWsR5WAbfKDAdlDUWxf5bM+U/8d4E4v49x4HpKY1fqsrx3hLAhyA=="; + url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.10.tgz"; + sha512 = "9HCQ0kbzN+Pj3fx6NMEFrXWPbTuOKChlKSEvfnWjlpEYU9fQG+OqoY5/ALs9aX4RhfhzQhFBuaaaviSkaFpmzQ=="; }; }; "@forge/api-2.15.2" = { @@ -6088,31 +6088,31 @@ let sha512 = "n2eXc/shPwx0ahD3NNfsmeiFoBCukeglt2htePaNnJBDt0VpC6R4Njsjc/wnL5OMgrGl5/GXzN+mymngXrw9qQ=="; }; }; - "@forge/bundler-4.6.6" = { + "@forge/bundler-4.6.7" = { name = "_at_forge_slash_bundler"; packageName = "@forge/bundler"; - version = "4.6.6"; + version = "4.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/bundler/-/bundler-4.6.6.tgz"; - sha512 = "HeKEthggGi+dLCZMC8HpPH8lnOcDsDi0BndWpSFK/HAGBpZX8uRJT30Rwmn+V44TR8M7Dwxer6zatkGDfS+H2Q=="; + url = "https://registry.npmjs.org/@forge/bundler/-/bundler-4.6.7.tgz"; + sha512 = "RfeG5Qmdlp4eibiHdFj0F6Cl2vBvP7hCmds0kNUTUQ9EO/OEeeukXyfFxicHNC9bgbXih/88/+PsS1Tb8qPLrA=="; }; }; - "@forge/cli-shared-3.11.0" = { + "@forge/cli-shared-3.11.1" = { name = "_at_forge_slash_cli-shared"; packageName = "@forge/cli-shared"; - version = "3.11.0"; + version = "3.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.11.0.tgz"; - sha512 = "f+t/MIkeaG5jH7G5ZIbnOtCiISvIzgDllkH7zIGkhyTryWGjswaKbWs8GLYkjPMZQql6LxNShjOFJdNJ6c+1qA=="; + url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.11.1.tgz"; + sha512 = "mGW9ITjK0mZDwi3sxbEXqwy+tN27tXf4xY5WNP5/sStIiA2QFTdqWhtcdb7n/i6H5ZjOHsynUYWsuU1e7OVb7Q=="; }; }; - "@forge/csp-2.1.2" = { + "@forge/csp-2.1.3" = { name = "_at_forge_slash_csp"; packageName = "@forge/csp"; - version = "2.1.2"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/csp/-/csp-2.1.2.tgz"; - sha512 = "57PRZmdEjvdqojiTsyGkeYnU+WkQi7tjY34UFNS09UnxThH8GDp2akhp340ZZmJYSj1WWHl50X3oSA8J3XcxXQ=="; + url = "https://registry.npmjs.org/@forge/csp/-/csp-2.1.3.tgz"; + sha512 = "ccaodlJx0qfV/eCERa8a6oZwGPd8c0nXYWdTrl3JPoJn7MrpP0mzVc/BgmXIhyybaA81lXNfxVAYUeV4QekYzg=="; }; }; "@forge/egress-1.2.0" = { @@ -6124,31 +6124,31 @@ let sha512 = "2rYfJnCwp3cIfdYvY+40DHNZXTYq1WafLDoJhkKt4cyVDSER2Tl5MFsLu1M6LbN0YGXyyMHDZ9GhFuYqS+3HJg=="; }; }; - "@forge/lint-3.3.0" = { + "@forge/lint-3.3.1" = { name = "_at_forge_slash_lint"; packageName = "@forge/lint"; - version = "3.3.0"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/lint/-/lint-3.3.0.tgz"; - sha512 = "upaOVi2JCb3cCKgkaYL24k1rgDNVwy4/P3pGPgs1gFXFjWvpOW/XpIrofxsSsvDmT0mmJdegYDNnvJETtN2w7A=="; + url = "https://registry.npmjs.org/@forge/lint/-/lint-3.3.1.tgz"; + sha512 = "SDWryYNehNr/PUWZQ/zUEjqNVFnfRnZ5wI3CuQnxLv6vpqgp1k0rubnONGjcPkTzRUV4U4Yup/6cNdVoxq1icA=="; }; }; - "@forge/manifest-4.10.0" = { + "@forge/manifest-4.11.0" = { name = "_at_forge_slash_manifest"; packageName = "@forge/manifest"; - version = "4.10.0"; + version = "4.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.10.0.tgz"; - sha512 = "L8z86jB0w2iOsyeMXjek5CzBiyv9eE7v7nl27pvyfn3zRNUYii4YFwa0LMMmWBApjwksZdXEiXbBojTotv5k4w=="; + url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.11.0.tgz"; + sha512 = "xi8Y8cyml4OT0OWLUyj1B26BfoG4IK6f3q7YrRdNGAb3PUS3uBuzwWm1ihZd7H1kvMACU0ui0YcUprkQgAS68A=="; }; }; - "@forge/runtime-4.3.2" = { + "@forge/runtime-4.3.3" = { name = "_at_forge_slash_runtime"; packageName = "@forge/runtime"; - version = "4.3.2"; + version = "4.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/runtime/-/runtime-4.3.2.tgz"; - sha512 = "ncbuZpLZB+uUYFW/FTJRKbRP4kROwlHWOhZuhlhG8FR/3bWgtZg8zI2QQMOo5XHP978sL8RdDKyGzjGleFdz5g=="; + url = "https://registry.npmjs.org/@forge/runtime/-/runtime-4.3.3.tgz"; + sha512 = "XS3bw/ll2nxAAlKneD2BjnlZpxznxXgURc+0xQtSApvSEed8ItUMWiEwFLGiMd+gwmijPhuAQYDiP7ma5ZJ0Aw=="; }; }; "@forge/storage-1.5.1" = { @@ -6160,13 +6160,13 @@ let sha512 = "Muf3zizR5RFU3efDpC/mYeLa7fSr8zeLC0hW3gxAWHH4T2t6X4WgXbyJxIuaLbSuO/9IAfr90vLqdqTim9MVrA=="; }; }; - "@forge/tunnel-3.3.5" = { + "@forge/tunnel-3.3.6" = { name = "_at_forge_slash_tunnel"; packageName = "@forge/tunnel"; - version = "3.3.5"; + version = "3.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/tunnel/-/tunnel-3.3.5.tgz"; - sha512 = "Hy8kWnwvX7rdtsaFqwbrv/rk5BugQSBKu+lSdGC16m4TX54Ie7QqBpMA5MGTMBvOrghZ5iJM7wM/AcMz7clTSQ=="; + url = "https://registry.npmjs.org/@forge/tunnel/-/tunnel-3.3.6.tgz"; + sha512 = "afHizD753UrGRiEl7H5lVdRIbPKmOM9meg1aH0vKRC0Nbftwh4GoYx4Lhrn9Etdg8mfV3+89pjsqv4ZLoGwu+A=="; }; }; "@forge/util-1.2.3" = { @@ -9337,13 +9337,13 @@ let sha512 = "8rPS/gsjLgWp//nraRs5/yf7EkueFHBLRTMUli3yTu88XrQ2czbXIP2HsF2rxmtCqUUfXUTllHfr8OzqBs0Dcw=="; }; }; - "@oclif/core-2.8.2" = { + "@oclif/core-2.8.4" = { name = "_at_oclif_slash_core"; packageName = "@oclif/core"; - version = "2.8.2"; + version = "2.8.4"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/core/-/core-2.8.2.tgz"; - sha512 = "g50NrCdEcFlBfuwZb9RxLmxPNQ9wIaBPOiwbxlGYRkHMnsC6LNHcvVtyDnmndU8qoXrmCOZ6ocSZenOMlG+G1w=="; + url = "https://registry.npmjs.org/@oclif/core/-/core-2.8.4.tgz"; + sha512 = "VlFDhoAJ1RDwcpDF46wAlciWTIryapMUViACttY9GwX6Ci6Lud1awe/pC3k4jad5472XshnPQV4bHAl4a/yxpA=="; }; }; "@oclif/errors-1.3.4" = { @@ -10930,22 +10930,22 @@ let sha512 = "pQTM5WmOzrvhpPSHFDShwqX71YnLaTUxffhnly4MxVNKJ2WKV9zqx8bGQ/7cLfpEu9JfY2c+pVjYYb3wAMBt+Q=="; }; }; - "@remix-run/express-1.15.0" = { + "@remix-run/express-1.16.0" = { name = "_at_remix-run_slash_express"; packageName = "@remix-run/express"; - version = "1.15.0"; + version = "1.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/express/-/express-1.15.0.tgz"; - sha512 = "mvDZB03W6NqbtyVpeiJfmGQY1L7CX+KEfSIV/kNgyK+gAMAWhsioC/Vjlo4IFY3NvOD0rh9mxuC+/IPT6Al3uw=="; + url = "https://registry.npmjs.org/@remix-run/express/-/express-1.16.0.tgz"; + sha512 = "V6krwEHajFtpmp/Ds88Ml3HnVoZXrtBTgNaqIxnbiTKeIURKaVQbA0+BTIf3jwnFrL8jFTOFA0Dns3honKAHfw=="; }; }; - "@remix-run/node-1.15.0" = { + "@remix-run/node-1.16.0" = { name = "_at_remix-run_slash_node"; packageName = "@remix-run/node"; - version = "1.15.0"; + version = "1.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/node/-/node-1.15.0.tgz"; - sha512 = "CS0p8T6A2KvMoAW5zzLA/BtNNCsv34A5RJoouJvXK9/o6MriAQ/YSugg6ldS5mec49neSep+CGeL1RS6tL+3NQ=="; + url = "https://registry.npmjs.org/@remix-run/node/-/node-1.16.0.tgz"; + sha512 = "2JtU3sVWDkyLcZ2prLovSbp4/K/mjbei1r9Qv6D9+fKgJFu3YjCPKfPiSj+T4My5rCG7azuKs5KOtmnwKBavrA=="; }; }; "@remix-run/router-1.5.0" = { @@ -10957,13 +10957,22 @@ let sha512 = "bkUDCp8o1MvFO+qxkODcbhSqRa6P2GXgrGZVpt0dCXNW2HCSCqYI0ZoAqEOSAjRWmmlKcYgFvN4B4S+zo/f8kg=="; }; }; - "@remix-run/serve-1.15.0" = { + "@remix-run/router-1.6.0" = { + name = "_at_remix-run_slash_router"; + packageName = "@remix-run/router"; + version = "1.6.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@remix-run/router/-/router-1.6.0.tgz"; + sha512 = "N13NRw3T2+6Xi9J//3CGLsK2OqC8NMme3d/YX+nh05K9YHWGcv8DycHJrqGScSP4T75o8IN6nqIMhVFU8ohg8w=="; + }; + }; + "@remix-run/serve-1.16.0" = { name = "_at_remix-run_slash_serve"; packageName = "@remix-run/serve"; - version = "1.15.0"; + version = "1.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/serve/-/serve-1.15.0.tgz"; - sha512 = "j06vKhxtLSR3JpkcoBMPb1EeM6QrbbuTdDh4m0eY/D4QgUzba4ws6r3OzEGc5FMe5xSULO0YVd2QWlyqBlMIWQ=="; + url = "https://registry.npmjs.org/@remix-run/serve/-/serve-1.16.0.tgz"; + sha512 = "Q65NqQuqQosSZUnoHKgQkB9QN2Ed/uvtE9VV8D8ZPSZMV6asAs+BbZf5UUkMWX0+GlH+82j0a8emNnG6dlIQ0w=="; }; }; "@remix-run/server-runtime-1.15.0" = { @@ -10975,6 +10984,15 @@ let sha512 = "DL9xjHfYYrEcOq5VbhYtrjJUWo/nFQAT7Y+Np/oC55HokyU6cb2jGhl52nx96aAxKwaFCse5N90GeodFsRzX7w=="; }; }; + "@remix-run/server-runtime-1.16.0" = { + name = "_at_remix-run_slash_server-runtime"; + packageName = "@remix-run/server-runtime"; + version = "1.16.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.16.0.tgz"; + sha512 = "a8rfS2SJ2nWhyGikXo+uknOSl1gW1/maDYuiG4Ki2wbVmF0v5mhJhlyB+1l+BjvXw+ZTS9HIiSQkg6L6JWqEcQ=="; + }; + }; "@remix-run/web-blob-3.0.4" = { name = "_at_remix-run_slash_web-blob"; packageName = "@remix-run/web-blob"; @@ -13693,15 +13711,6 @@ let sha512 = "z6nr0TTEOBGkzLGmbypWOGnpSpSIBorEhC4L+4HeQ2iezKCi4f77kyslRwvHeNitymGQ+oFyIWGP96l/DPSV9w=="; }; }; - "@types/node-18.16.1" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "18.16.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.16.1.tgz"; - sha512 = "DZxSZWXxFfOlx7k7Rv4LAyiMroaxa3Ly/7OOzZO8cBNho0YzAi4qlbrx8W27JGqG57IgR/6J7r+nOJWw6kcvZA=="; - }; - }; "@types/node-18.16.2" = { name = "_at_types_slash_node"; packageName = "@types/node"; @@ -14287,13 +14296,13 @@ let sha512 = "B5m9aq7cbbD/5/jThEr33nUY8WEfVi6A2YKCTOvw5Ldy7mtsOkqRvGjnzy6g7iMMDsgu7xREuCzqATLDLQVKcQ=="; }; }; - "@types/which-2.0.2" = { + "@types/which-3.0.0" = { name = "_at_types_slash_which"; packageName = "@types/which"; - version = "2.0.2"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@types/which/-/which-2.0.2.tgz"; - sha512 = "113D3mDkZDjo+EeUEHCFy0qniNc1ZpecGiAU7WSo7YDoSzolZIQKpYFHrPpjkB2nuyahcKfrmLXeQlh7gqJYdw=="; + url = "https://registry.npmjs.org/@types/which/-/which-3.0.0.tgz"; + sha512 = "ASCxdbsrwNfSMXALlC3Decif9rwDMu+80KGp5zI2RLRotfMsTv7fHL8W8VDp24wymzDyIFudhUeSCugrgRFfHQ=="; }; }; "@types/ws-6.0.4" = { @@ -14377,13 +14386,13 @@ let sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="; }; }; - "@typescript-eslint/eslint-plugin-5.59.1" = { + "@typescript-eslint/eslint-plugin-5.59.2" = { name = "_at_typescript-eslint_slash_eslint-plugin"; packageName = "@typescript-eslint/eslint-plugin"; - version = "5.59.1"; + version = "5.59.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.1.tgz"; - sha512 = "AVi0uazY5quFB9hlp2Xv+ogpfpk77xzsgsIEWyVS7uK/c7MZ5tw7ZPbapa0SbfkqE0fsAMkz5UwtgMLVk2BQAg=="; + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.2.tgz"; + sha512 = "yVrXupeHjRxLDcPKL10sGQ/QlVrA8J5IYOEWVqk0lJaSZP7X5DfnP7Ns3cc74/blmbipQ1htFNVGsHX6wsYm0A=="; }; }; "@typescript-eslint/experimental-utils-4.33.0" = { @@ -14404,13 +14413,13 @@ let sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="; }; }; - "@typescript-eslint/parser-5.59.1" = { + "@typescript-eslint/parser-5.59.2" = { name = "_at_typescript-eslint_slash_parser"; packageName = "@typescript-eslint/parser"; - version = "5.59.1"; + version = "5.59.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.1.tgz"; - sha512 = "nzjFAN8WEu6yPRDizIFyzAfgK7nybPodMNFGNH0M9tei2gYnYszRDqVA0xlnRjkl7Hkx2vYrEdb6fP2a21cG1g=="; + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.2.tgz"; + sha512 = "uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ=="; }; }; "@typescript-eslint/scope-manager-4.33.0" = { @@ -14422,22 +14431,22 @@ let sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="; }; }; - "@typescript-eslint/scope-manager-5.59.1" = { + "@typescript-eslint/scope-manager-5.59.2" = { name = "_at_typescript-eslint_slash_scope-manager"; packageName = "@typescript-eslint/scope-manager"; - version = "5.59.1"; + version = "5.59.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.1.tgz"; - sha512 = "mau0waO5frJctPuAzcxiNWqJR5Z8V0190FTSqRw1Q4Euop6+zTwHAf8YIXNwDOT29tyUDrQ65jSg9aTU/H0omA=="; + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.2.tgz"; + sha512 = "dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA=="; }; }; - "@typescript-eslint/type-utils-5.59.1" = { + "@typescript-eslint/type-utils-5.59.2" = { name = "_at_typescript-eslint_slash_type-utils"; packageName = "@typescript-eslint/type-utils"; - version = "5.59.1"; + version = "5.59.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.1.tgz"; - sha512 = "ZMWQ+Oh82jWqWzvM3xU+9y5U7MEMVv6GLioM3R5NJk6uvP47kZ7YvlgSHJ7ERD6bOY7Q4uxWm25c76HKEwIjZw=="; + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.2.tgz"; + sha512 = "b1LS2phBOsEy/T381bxkkywfQXkV1dWda/z0PhnIy3bC5+rQWQDS7fk9CSpcXBccPY27Z6vBEuaPBCKCgYezyQ=="; }; }; "@typescript-eslint/types-4.33.0" = { @@ -14449,13 +14458,13 @@ let sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="; }; }; - "@typescript-eslint/types-5.59.1" = { + "@typescript-eslint/types-5.59.2" = { name = "_at_typescript-eslint_slash_types"; packageName = "@typescript-eslint/types"; - version = "5.59.1"; + version = "5.59.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.1.tgz"; - sha512 = "dg0ICB+RZwHlysIy/Dh1SP+gnXNzwd/KS0JprD3Lmgmdq+dJAJnUPe1gNG34p0U19HvRlGX733d/KqscrGC1Pg=="; + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.2.tgz"; + sha512 = "LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w=="; }; }; "@typescript-eslint/typescript-estree-4.33.0" = { @@ -14467,22 +14476,22 @@ let sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="; }; }; - "@typescript-eslint/typescript-estree-5.59.1" = { + "@typescript-eslint/typescript-estree-5.59.2" = { name = "_at_typescript-eslint_slash_typescript-estree"; packageName = "@typescript-eslint/typescript-estree"; - version = "5.59.1"; + version = "5.59.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.1.tgz"; - sha512 = "lYLBBOCsFltFy7XVqzX0Ju+Lh3WPIAWxYpmH/Q7ZoqzbscLiCW00LeYCdsUnnfnj29/s1WovXKh2gwCoinHNGA=="; + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.2.tgz"; + sha512 = "+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q=="; }; }; - "@typescript-eslint/utils-5.59.1" = { + "@typescript-eslint/utils-5.59.2" = { name = "_at_typescript-eslint_slash_utils"; packageName = "@typescript-eslint/utils"; - version = "5.59.1"; + version = "5.59.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.1.tgz"; - sha512 = "MkTe7FE+K1/GxZkP5gRj3rCztg45bEhsd8HYjczBuYm+qFHP5vtZmjx3B0yUCDotceQ4sHgTyz60Ycl225njmA=="; + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.2.tgz"; + sha512 = "kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ=="; }; }; "@typescript-eslint/visitor-keys-4.33.0" = { @@ -14494,13 +14503,13 @@ let sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; }; }; - "@typescript-eslint/visitor-keys-5.59.1" = { + "@typescript-eslint/visitor-keys-5.59.2" = { name = "_at_typescript-eslint_slash_visitor-keys"; packageName = "@typescript-eslint/visitor-keys"; - version = "5.59.1"; + version = "5.59.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.1.tgz"; - sha512 = "6waEYwBTCWryx0VJmP7JaM4FpipLsFl9CvYf2foAE8Qh/Y0s+bxWysciwOs0LTBED4JCaNxTZ5rGadB14M6dwA=="; + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.2.tgz"; + sha512 = "EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig=="; }; }; "@uphold/request-logger-2.0.0" = { @@ -14611,13 +14620,13 @@ let sha512 = "v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ=="; }; }; - "@vercel/gatsby-plugin-vercel-builder-1.3.0" = { + "@vercel/gatsby-plugin-vercel-builder-1.3.1" = { name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; packageName = "@vercel/gatsby-plugin-vercel-builder"; - version = "1.3.0"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.0.tgz"; - sha512 = "hkCuhQb1ZVemnu7Cw3aokXTZNWXjj+VHio9H5T+Nq1WqR2Wgg4G262ipVv9viyhU5IWAiw13PdJFJJzxA8hoHg=="; + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.1.tgz"; + sha512 = "xVxZcBoOoCa/762vl44ohWyc2deojOacnQHplsZrEC/Pu381XDP8TIlP3RVCTYripgSD62Hsf9SY6+Ann1J/+w=="; }; }; "@vercel/go-2.5.1" = { @@ -14638,13 +14647,13 @@ let sha512 = "1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw=="; }; }; - "@vercel/next-3.7.6" = { + "@vercel/next-3.8.2" = { name = "_at_vercel_slash_next"; packageName = "@vercel/next"; - version = "3.7.6"; + version = "3.8.2"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/next/-/next-3.7.6.tgz"; - sha512 = "4diEoHgQCPbHmSpehSvK5VyFIV972YIjFIVXtKFZgxD6ziUIYspiCq+fRERGR6xvucCL2k/69gY7NUbJ47t4wg=="; + url = "https://registry.npmjs.org/@vercel/next/-/next-3.8.2.tgz"; + sha512 = "tTcfAC+C+3la1g2UJW0cm9lGEU1Mq5O0x73MLQPKWpoHOHqZYjbKBCUm5nAFKnaMSvWS1kFm9b0v1iKQk28mGA=="; }; }; "@vercel/nft-0.22.5" = { @@ -14656,13 +14665,13 @@ let sha512 = "mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw=="; }; }; - "@vercel/node-2.13.0" = { + "@vercel/node-2.14.0" = { name = "_at_vercel_slash_node"; packageName = "@vercel/node"; - version = "2.13.0"; + version = "2.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node/-/node-2.13.0.tgz"; - sha512 = "GbRpXNePrFlTDoFXY2DI90CD4kWgsiBOC11OVyRrOP6Kob25/jmkB4YWRfDFhsj0L6AYVwyNkdQ0MpFXIz6a2Q=="; + url = "https://registry.npmjs.org/@vercel/node/-/node-2.14.0.tgz"; + sha512 = "oLahDnrotT4IzJ9dGiFt4shL6ME7rhNVQ0E4yeVH1drmwCA5aC9G+kiHaFXUFELlSqP7/mgxLqcQ5MkidOO7xA=="; }; }; "@vercel/python-3.1.60" = { @@ -14710,13 +14719,13 @@ let sha512 = "J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ=="; }; }; - "@vercel/static-build-1.3.26" = { + "@vercel/static-build-1.3.27" = { name = "_at_vercel_slash_static-build"; packageName = "@vercel/static-build"; - version = "1.3.26"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.26.tgz"; - sha512 = "Ltt8jmKMuO4CnrcU6YLMugCx3HooGxIMxPtzAZWHqXJWUCBrhFhpf9oZXL9gZyEwaqthqTKoeXoTLA9rOsyPpg=="; + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.27.tgz"; + sha512 = "s4/ozCXaD1GNjFKRoYJPXCLGpEbL7c3f7paRq9LWnTRZgZF0Y2RoJpHsK2hHdkgMb3j3FZVD3VTj4LyLGneIzw=="; }; }; "@vercel/static-config-2.0.17" = { @@ -16213,13 +16222,13 @@ let sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; }; }; - "@yarnpkg/parsers-3.0.0-rc.42" = { + "@yarnpkg/parsers-3.0.0-rc.43" = { name = "_at_yarnpkg_slash_parsers"; packageName = "@yarnpkg/parsers"; - version = "3.0.0-rc.42"; + version = "3.0.0-rc.43"; src = fetchurl { - url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.42.tgz"; - sha512 = "eW9Mbegmb5bJjwawJM9ghjUjUqciNMhC6L7XrQPF/clXS5bbP66MstsgCT5hy9VlfUh/CfBT+0Wucf531dMjHA=="; + url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.43.tgz"; + sha512 = "AhFF3mIDfA+jEwQv2WMHmiYhOvmdbh2qhUkDVQfiqzQtUwS4BgoWwom5NpSPg4Ix5vOul+w1690Bt21CkVLpgg=="; }; }; "@zeit/schemas-2.29.0" = { @@ -19363,13 +19372,13 @@ let sha512 = "d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q=="; }; }; - "aws-crt-1.15.15" = { + "aws-crt-1.15.16" = { name = "aws-crt"; packageName = "aws-crt"; - version = "1.15.15"; + version = "1.15.16"; src = fetchurl { - url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.15.15.tgz"; - sha512 = "StdpO3MREZLpAvkGs+PQNMLn0tvBagfl9iaeo7FYSHV0hQvnD5XoOARE2esQg1RxIH+2yRPvg4ccqLFNWC2qGw=="; + url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.15.16.tgz"; + sha512 = "p/ImGq8duQ4sOqRzB5dJ81T2jto2LcfxEgSHuSHH9+pzOyHdkoMLAgMtVfX9bt9m4i0EP/20jLM2ydID8G7Umw=="; }; }; "aws-sdk-1.18.0" = { @@ -19399,13 +19408,13 @@ let sha512 = "qRrXLgK4FpkdxeagjrHuhtEEvYrvRbddTBg1I7KBuMCIhXHzSS3nEUmdZjdyMuQJEvt0BCJjwVkNh8e/5TauDQ=="; }; }; - "aws-sdk-2.1368.0" = { + "aws-sdk-2.1369.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.1368.0"; + version = "2.1369.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1368.0.tgz"; - sha512 = "Yc3s8PqdcYG4wyCOpDj4TwXacGZGDgZBJ/XAtzMLKW2wN2c4uu7GwSosLxZ8ejzbAbcqjf080odPuD8P0819tw=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1369.0.tgz"; + sha512 = "DdCQjlhQDi9w8J4moqECrrp9ARWCay0UI38adPSS0GG43gh3bl3OoMlgKJ8aZxi4jUvzE48K9yhFHz4y/mazZw=="; }; }; "aws-sign2-0.6.0" = { @@ -22613,13 +22622,13 @@ let sha512 = "/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ=="; }; }; - "cacache-17.0.6" = { + "cacache-17.0.7" = { name = "cacache"; packageName = "cacache"; - version = "17.0.6"; + version = "17.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/cacache/-/cacache-17.0.6.tgz"; - sha512 = "ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw=="; + url = "https://registry.npmjs.org/cacache/-/cacache-17.0.7.tgz"; + sha512 = "2GdqQs7hl20V50cB+JEuGeR6YtcNsf1Y9+SP8YXjmGlZz4hM5Ds9s6mKo7e27r6sfF/6MhN4DKRrGldidJJWow=="; }; }; "cache-base-1.0.1" = { @@ -23045,13 +23054,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001481" = { + "caniuse-lite-1.0.30001482" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001481"; + version = "1.0.30001482"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001481.tgz"; - sha512 = "KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz"; + sha512 = "F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ=="; }; }; "canvas-2.11.2" = { @@ -23225,13 +23234,13 @@ let sha512 = "GXmHxRdAPPCkD0jbD8QIhfry+EiHaLNAEToLh4snvgUhoYPuYd2qNKx6u7tyrw9Gpat8OxNMrX6J3Av3EjVmFw=="; }; }; - "cdk8s-plus-25-2.7.12" = { + "cdk8s-plus-25-2.7.14" = { name = "cdk8s-plus-25"; packageName = "cdk8s-plus-25"; - version = "2.7.12"; + version = "2.7.14"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.7.12.tgz"; - sha512 = "wbfKqESYjfO5qPOmzY8c/wEl+neYpryqZZD0ZW/4YcILH2FTYjXCsEzi/FZ/stFv09aWiVd/szIWtMBxOzMytA=="; + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.7.14.tgz"; + sha512 = "EMp0PldyDwNiS814y9O5nvr3Il3W5+N51fTFdpUziUQoqUJ692I/d0T1e9AV/b0IonhrXhM9hkEWre3LIbdDAg=="; }; }; "cdktf-0.16.1" = { @@ -24557,6 +24566,16 @@ let sha512 = "BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="; }; }; + "cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" = { + name = "cliui"; + packageName = "cliui"; + version = "8.0.1"; + src = fetchgit { + url = "https://github.com/isaacs/cliui"; + rev = "9f97090165675fdda63a79c29bc36bb1033506b0"; + sha256 = "ab26c7d11e3828b09fa5596ad1a88b57df8694c4b1d88c5ef1979914a1376fb9"; + }; + }; "clivas-0.1.4" = { name = "clivas"; packageName = "clivas"; @@ -26078,13 +26097,13 @@ let sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; }; }; - "constructs-10.2.10" = { + "constructs-10.2.12" = { name = "constructs"; packageName = "constructs"; - version = "10.2.10"; + version = "10.2.12"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-10.2.10.tgz"; - sha512 = "FTxjGUJg5JOMTfX+pCxoG6nkauYFpcX9YSe3x0+P0xwg77hg7NzYGd4tdGQJFOwbiku3r943XQ0nlcYgJhEF9w=="; + url = "https://registry.npmjs.org/constructs/-/constructs-10.2.12.tgz"; + sha512 = "aBX/fxAgJgZaX2SL6rdUap8UIWAY1lv6xK/stB1EJ3TFpSEDApd6ZCG40hvK/243H13m0MilvCrmyfyKTdiPlQ=="; }; }; "consume-http-header-1.0.0" = { @@ -27780,13 +27799,13 @@ let sha512 = "j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw=="; }; }; - "cssnano-6.0.0" = { + "cssnano-6.0.1" = { name = "cssnano"; packageName = "cssnano"; - version = "6.0.0"; + version = "6.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/cssnano/-/cssnano-6.0.0.tgz"; - sha512 = "RGlcbzGhzEBCHuQe3k+Udyj5M00z0pm9S+VurHXFEOXxH+y0sVrJH2sMzoyz2d8N1EScazg+DVvmgyx0lurwwA=="; + url = "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz"; + sha512 = "fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg=="; }; }; "cssnano-preset-default-4.0.8" = { @@ -27807,13 +27826,13 @@ let sha512 = "t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A=="; }; }; - "cssnano-preset-default-6.0.0" = { + "cssnano-preset-default-6.0.1" = { name = "cssnano-preset-default"; packageName = "cssnano-preset-default"; - version = "6.0.0"; + version = "6.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.0.tgz"; - sha512 = "BDxlaFzObRDXUiCCBQUNQcI+f1/aX2mgoNtXGjV6PG64POcHoDUoX+LgMWw+Q4609QhxwkcSnS65YFs42RA6qQ=="; + url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz"; + sha512 = "7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ=="; }; }; "cssnano-util-get-arguments-4.0.0" = { @@ -28005,6 +28024,15 @@ let sha512 = "ird8lzMv9I64oqIVIHdaTbT7Yr55n2C/Nv6m1LxO7nddLEeI67468VQ9Ik+r6lwYbK9kTE1oSqAVcVKc/Uqx6g=="; }; }; + "csv-parse-5.3.9" = { + name = "csv-parse"; + packageName = "csv-parse"; + version = "5.3.9"; + src = fetchurl { + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.9.tgz"; + sha512 = "Nuh09OE1+wG6x5Lu2T+woxlupPAnWJ6Wj9XVYK74gP646e5gDrUsrCws1zz5NbckpQ+jygnxb8xDLj3gfBxi3w=="; + }; + }; "csv-stream-0.2.0" = { name = "csv-stream"; packageName = "csv-stream"; @@ -29013,13 +29041,13 @@ let sha512 = "hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw=="; }; }; - "date-fns-2.29.3" = { + "date-fns-2.30.0" = { name = "date-fns"; packageName = "date-fns"; - version = "2.29.3"; + version = "2.30.0"; src = fetchurl { - url = "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz"; - sha512 = "dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA=="; + url = "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz"; + sha512 = "fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw=="; }; }; "date-format-2.1.0" = { @@ -31533,13 +31561,13 @@ let sha512 = "r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ=="; }; }; - "electron-to-chromium-1.4.377" = { + "electron-to-chromium-1.4.378" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.377"; + version = "1.4.378"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.377.tgz"; - sha512 = "H3BYG6DW5Z+l0xcfXaicJGxrpA4kMlCxnN71+iNX+dBLkRMOdVJqFJiAmbNZZKA1zISpRg17JR03qGifXNsJtw=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.378.tgz"; + sha512 = "RfCD26kGStl6+XalfX3DGgt3z2DNwJS5DKRHCpkPq5T/PqpZMPB1moSRXuK9xhkt/sF57LlpzJgNoYl7mO7Z6w=="; }; }; "electrum-client-git+https://github.com/janoside/electrum-client" = { @@ -37260,6 +37288,15 @@ let sha512 = "/FAzX0w4Zd4PaVMM06wSJfDfdkYmIqZs4c6iCUc2icEL8nz6VJqyqlCy6InPZInjf6HadfhkFxYd2a0RDZ3Htg=="; }; }; + "fx-27.0.0" = { + name = "fx"; + packageName = "fx"; + version = "27.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/fx/-/fx-27.0.0.tgz"; + sha512 = "am6jTZW1vTfdc42QH63qqtN5QoNb7JiD+DH40SokzVKSofKCcqSAq1V6ASCR/d3R2YyLFD68h6nWaSVt/BZqDA=="; + }; + }; "fx-runner-1.3.0" = { name = "fx-runner"; packageName = "fx-runner"; @@ -38196,15 +38233,6 @@ let sha512 = "nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="; }; }; - "glob-8.0.3" = { - name = "glob"; - packageName = "glob"; - version = "8.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz"; - sha512 = "ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ=="; - }; - }; "glob-8.1.0" = { name = "glob"; packageName = "glob"; @@ -40384,6 +40412,15 @@ let sha512 = "1rRqesRFhMO/PRF+G86evnyJkCgaZFOI+Z6kdj15TA18funfoqJXvgPCLSf0SWq3SRfg1j3HlDs8o4s3EGq1oQ=="; }; }; + "highlight.js-11.8.0" = { + name = "highlight.js"; + packageName = "highlight.js"; + version = "11.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/highlight.js/-/highlight.js-11.8.0.tgz"; + sha512 = "MedQhoqVdr0U6SSnWPzfiadUcDHfN/Wzq25AkXiQv9oiOO/sG0S7XkvpFIqWBl9Yq1UYyYOOVORs5UW2XlPyzg=="; + }; + }; "highlight.js-8.2.0" = { name = "highlight.js"; packageName = "highlight.js"; @@ -44956,13 +44993,22 @@ let sha512 = "R2SE/AQrE4IhlyRbBp7ASIjFO+Wlpfra2Q7GMZkOjQb890MLtKyINPawJ7fr+Z7CPgHoXj2J3BNyebBIbVn8PQ=="; }; }; - "jackspeak-2.1.1" = { + "jackspeak-2.1.3" = { name = "jackspeak"; packageName = "jackspeak"; - version = "2.1.1"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/jackspeak/-/jackspeak-2.1.1.tgz"; - sha512 = "juf9stUEwUaILepraGOWIJTLwg48bUnBmRqd2ln2Os1sW987zeoj/hzhbvRB95oMuS2ZTpjULmdwHNX4rzZIZw=="; + url = "https://registry.npmjs.org/jackspeak/-/jackspeak-2.1.3.tgz"; + sha512 = "fdMVv5tNmDwEilqhV3P5d71SWGhBwMPTfIXRGx9BN+3N84d64hw4i6tZb7GKzssGT6O7gYYWDNJnSAdliiLCkQ=="; + }; + }; + "jackspeak-2.1.4" = { + name = "jackspeak"; + packageName = "jackspeak"; + version = "2.1.4"; + src = fetchurl { + url = "https://registry.npmjs.org/jackspeak/-/jackspeak-2.1.4.tgz"; + sha512 = "7CGd4ZQu5M/FgQLlcgcsY858wf+ukg1ma5M95FACSfC54+88vm594Nv6C3NqWfk8wyK1u+E3SzvVsxr7bwONmg=="; }; }; "jade-0.26.3" = { @@ -45956,13 +46002,13 @@ let sha512 = "cJGoILr4jNnOIDtNY3LLldsZujmtEILOzwX7yHFu+sVcqlpyeT8VYd34hQwIh3D9HA9DqJh30thTqoQbRMdN+A=="; }; }; - "jsii-srcmak-0.1.898" = { + "jsii-srcmak-0.1.900" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.898"; + version = "0.1.900"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.898.tgz"; - sha512 = "9zBsfGKwbQI6FLlMPIy2Vq7qkL0X5SvZ9iAUBlN5GN9RRIGqOC55NhrpA1ppglQrzhvPZQ8Vp2VrXYGi4ElAcg=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.900.tgz"; + sha512 = "D2tN+JZ941jlOVVdXLHmztbY1zlg1jbx0irkXPR8y2IWTftQalDkmx0dw82LJPEAVSGRSTiWKJoXRs+5o+fvqQ=="; }; }; "json-bigint-1.0.0" = { @@ -48035,15 +48081,6 @@ let sha512 = "qcMnxsKAkn5eWdFCZGP1mwW/6zBTTtGJPMt1BW6056bmB6kTAnP8A3+MWp1bQpdcfMzUKhl18am8uLu00w/FoA=="; }; }; - "lightning-9.1.0" = { - name = "lightning"; - packageName = "lightning"; - version = "9.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-9.1.0.tgz"; - sha512 = "L8sKI9LFFMvzs03CMKF0/1yq9LEImZXVukn7mASNkJ9NFQk7bMZrhxDuAGz8isTXIC6F6NTaPxthQnSbByx5NA=="; - }; - }; "lightning-9.2.1" = { name = "lightning"; packageName = "lightning"; @@ -48386,15 +48423,6 @@ let sha512 = "aeuRa5B3EhCJf6RL2m2oTK7luClU90Evhqp9RRWcfxngQZc2BSbw47fav63WaoXwA/o7/3tgy6y/1bCZ5UfzgA=="; }; }; - "ln-service-56.1.0" = { - name = "ln-service"; - packageName = "ln-service"; - version = "56.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-56.1.0.tgz"; - sha512 = "c5i7LoWN9F4YNbppo/k6pxvsUnyhbaviSSKBxB91zHQw/b0SvtJx4FQjEw2KXCSeGF3dqbj75mK2ZOXLfqFuBg=="; - }; - }; "ln-service-56.2.0" = { name = "ln-service"; packageName = "ln-service"; @@ -51231,15 +51259,6 @@ let sha512 = "Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw=="; }; }; - "markdownlint-0.27.0" = { - name = "markdownlint"; - packageName = "markdownlint"; - version = "0.27.0"; - src = fetchurl { - url = "https://registry.npmjs.org/markdownlint/-/markdownlint-0.27.0.tgz"; - sha512 = "HtfVr/hzJJmE0C198F99JLaeada+646B5SaG2pVoEakLFI6iRGsvMqrnnrflq8hm1zQgwskEgqSnhDW11JBp0w=="; - }; - }; "markdownlint-0.28.2" = { name = "markdownlint"; packageName = "markdownlint"; @@ -52455,13 +52474,13 @@ let sha512 = "ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw=="; }; }; - "micromark-extension-gfm-autolink-literal-1.0.3" = { + "micromark-extension-gfm-autolink-literal-1.0.4" = { name = "micromark-extension-gfm-autolink-literal"; packageName = "micromark-extension-gfm-autolink-literal"; - version = "1.0.3"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.3.tgz"; - sha512 = "i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg=="; + url = "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.4.tgz"; + sha512 = "WCssN+M9rUyfHN5zPBn3/f0mIA7tqArHL/EKbv3CZK+LT2rG77FEikIQEqBkv46fOqXQK4NEW/Pc7Z27gshpeg=="; }; }; "micromark-extension-gfm-footnote-1.1.0" = { @@ -55597,15 +55616,6 @@ let sha512 = "DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg=="; }; }; - "node-fetch-3.2.10" = { - name = "node-fetch"; - packageName = "node-fetch"; - version = "3.2.10"; - src = fetchurl { - url = "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.10.tgz"; - sha512 = "MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA=="; - }; - }; "node-fetch-3.2.4" = { name = "node-fetch"; packageName = "node-fetch"; @@ -59117,13 +59127,13 @@ let sha512 = "OhwWeWAFnklitYkobAgIqM7UlQuJdsYI9WeEsfdiVrfJau02JYwljtNMZEID1XWE7sYW3vMD3H8tsJC+fagrPQ=="; }; }; - "paid-services-5.0.1" = { + "paid-services-5.0.2" = { name = "paid-services"; packageName = "paid-services"; - version = "5.0.1"; + version = "5.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/paid-services/-/paid-services-5.0.1.tgz"; - sha512 = "DiJBCWTTCEqG3DFJlueoYe0XvHObskT81SLKPtXmZ1ET7pmP2YqNe6jVeg9JKD9gJQdzszFn6UCNHtnwudVnvA=="; + url = "https://registry.npmjs.org/paid-services/-/paid-services-5.0.2.tgz"; + sha512 = "in7k2lY+pjfj7+EJFPAgmk/Df1aKEWNSabDSW43YisJ7RyvIdy80bqAlg3qg43ykLM3ZfwLZxLDVq6ZoygAmWQ=="; }; }; "pako-0.2.9" = { @@ -61196,6 +61206,15 @@ let sha512 = "SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q=="; }; }; + "postcss-calc-9.0.0" = { + name = "postcss-calc"; + packageName = "postcss-calc"; + version = "9.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.0.tgz"; + sha512 = "B9BNW/SVh4SMJfoCQ6D9h1Wo7Yjqks7UdbiARJ16J5TIsQn5NEqwMF5joSgOYb26oJPUR5Uv3fCQ/4PvmZWeJQ=="; + }; + }; "postcss-colormin-4.0.3" = { name = "postcss-colormin"; packageName = "postcss-colormin"; @@ -61484,13 +61503,13 @@ let sha512 = "0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g=="; }; }; - "postcss-merge-rules-6.0.0" = { + "postcss-merge-rules-6.0.1" = { name = "postcss-merge-rules"; packageName = "postcss-merge-rules"; - version = "6.0.0"; + version = "6.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.0.tgz"; - sha512 = "rCXkklftzEkniyv3f4mRCQzxD6oE4Quyh61uyWTUbCJ26Pv2hoz+fivJSsSBWxDBeScR4fKCfF3HHTcD7Ybqnw=="; + url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz"; + sha512 = "a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw=="; }; }; "postcss-minify-font-values-4.0.2" = { @@ -68450,13 +68469,13 @@ let sha512 = "xcBILK2pA9oh4SiinPEZfhP8HfrB/ha+a2fTMyl7Om2WjlDVrOQy99N2MXXlUHqGJz4qEu2duXxHJjDWuK/0xg=="; }; }; - "reveal.js-4.4.0" = { + "reveal.js-4.5.0" = { name = "reveal.js"; packageName = "reveal.js"; - version = "4.4.0"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/reveal.js/-/reveal.js-4.4.0.tgz"; - sha512 = "jIV6C9V2NEUjGzU8L6dUFGpk1KJmq7/EzP2fOW67ggc2c0Cp/PdprWxZ9Qgp46F0T2ZWDCjQ1p3Ytzy5jA6a2w=="; + url = "https://registry.npmjs.org/reveal.js/-/reveal.js-4.5.0.tgz"; + sha512 = "Lx1hUWhJR7Y7ScQNyGt7TFzxeviDAswK2B0cn9RwbPZogTMRgS8+FTr+/12KNHOegjvWKH0H0EGwBARNDPTgWQ=="; }; }; "reverse-http-1.3.0" = { @@ -68684,13 +68703,13 @@ let sha512 = "uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw=="; }; }; - "rollup-3.21.1" = { + "rollup-3.21.2" = { name = "rollup"; packageName = "rollup"; - version = "3.21.1"; + version = "3.21.2"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.21.1.tgz"; - sha512 = "GpUgqWCw56OSiBKf7lcAITstYiBV1/EKaKYPl9r8HgAxc6/qYAVw1PaHWnvHWFziRaf4HsVCDLq/IGtBi1K/Zw=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.21.2.tgz"; + sha512 = "c4vC+JZ3bbF4Kqq2TtM7zSKtSyMybFOjqmomFax3xpfYaPZDZ4iz8NMIuBRMjnXOcKYozw7bC6vhJjiWD6JpzQ=="; }; }; "rollup-plugin-inject-3.0.2" = { @@ -73689,13 +73708,13 @@ let sha512 = "LbvprpPZT/39QKfNrlPX9vXtS7If80vqbPQ7clnHQb5oVOM5hz/cs3iQCCZjvQDwsAWl+HpLQX3gRgN6IC8t3g=="; }; }; - "string-argv-0.3.1" = { + "string-argv-0.3.2" = { name = "string-argv"; packageName = "string-argv"; - version = "0.3.1"; + version = "0.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz"; - sha512 = "a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg=="; + url = "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz"; + sha512 = "aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q=="; }; }; "string-env-interpolation-1.0.1" = { @@ -73851,6 +73870,15 @@ let sha512 = "HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="; }; }; + "string-width-cjs-4.2.3" = { + name = "string-width-cjs"; + packageName = "string-width-cjs"; + version = "4.2.3"; + src = fetchurl { + url = "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"; + sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; + }; + }; "string.prototype.matchall-4.0.8" = { name = "string.prototype.matchall"; packageName = "string.prototype.matchall"; @@ -74067,6 +74095,15 @@ let sha512 = "cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw=="; }; }; + "strip-ansi-cjs-6.0.1" = { + name = "strip-ansi-cjs"; + packageName = "strip-ansi-cjs"; + version = "6.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"; + sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; + }; + }; "strip-bom-2.0.0" = { name = "strip-bom"; packageName = "strip-bom"; @@ -78100,13 +78137,13 @@ let sha512 = "cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw=="; }; }; - "typescript-5.1.0-dev.20230429" = { + "typescript-5.1.0-dev.20230501" = { name = "typescript"; packageName = "typescript"; - version = "5.1.0-dev.20230429"; + version = "5.1.0-dev.20230501"; src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-5.1.0-dev.20230429.tgz"; - sha512 = "uzOWX4dd0B8t25Ps+qdggHp2opfq1weXTtdsJXMXSJBzz48o7iAK0JxVJ5NaOMvSSsrYNvByz0zB3KdfGceWbg=="; + url = "https://registry.npmjs.org/typescript/-/typescript-5.1.0-dev.20230501.tgz"; + sha512 = "do/P7zywbVm6xrjV7Sa7jqgqBfME/FhvtECzxfLpAxyqYY5SFPPWb5NTposRUVKw/0hLOxAoCbvYzNHa22VOMg=="; }; }; "typescript-eslint-parser-16.0.1" = { @@ -78595,6 +78632,15 @@ let sha512 = "J3j60dYzuo6Eevbawwp1sdg16k5Tf768bxYK4TUJRH7cBM4kFCbf3mOnM/0E3vQYXvpxITbbWmBafaDbxLDz3g=="; }; }; + "undici-5.22.0" = { + name = "undici"; + packageName = "undici"; + version = "5.22.0"; + src = fetchurl { + url = "https://registry.npmjs.org/undici/-/undici-5.22.0.tgz"; + sha512 = "fR9RXCc+6Dxav4P9VV/sp5w3eFiSdOjJYsbtWfd4s5L5C4ogyuVpdKIVHeW0vV1MloM65/f7W45nR9ZxwVdyiA=="; + }; + }; "unfetch-3.0.0" = { name = "unfetch"; packageName = "unfetch"; @@ -80638,15 +80684,6 @@ let sha512 = "K5zd7s5tjr1LiOOkjGpcVls8GsH/f2CWCrWcpKy74gTCp+llCdwz0Enqo013ZlGaRNjfgD/o1caJRt3GSaec4A=="; }; }; - "vega-expression-5.0.1" = { - name = "vega-expression"; - packageName = "vega-expression"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-expression/-/vega-expression-5.0.1.tgz"; - sha512 = "atfzrMekrcsuyUgZCMklI5ki8cV763aeo1Y6YrfYU7FBwcQEoFhIV/KAJ1vae51aPDGtfzvwbtVIo3WShFCP2Q=="; - }; - }; "vega-expression-5.1.0" = { name = "vega-expression"; packageName = "vega-expression"; @@ -82888,13 +82925,13 @@ let sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; }; }; - "which-3.0.0" = { + "which-3.0.1" = { name = "which"; packageName = "which"; - version = "3.0.0"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/which/-/which-3.0.0.tgz"; - sha512 = "nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ=="; + url = "https://registry.npmjs.org/which/-/which-3.0.1.tgz"; + sha512 = "XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg=="; }; }; "which-boxed-primitive-1.0.2" = { @@ -83464,6 +83501,15 @@ let sha512 = "si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="; }; }; + "wrap-ansi-cjs-7.0.0" = { + name = "wrap-ansi-cjs"; + packageName = "wrap-ansi-cjs"; + version = "7.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; + sha512 = "YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="; + }; + }; "wrap-fn-0.1.5" = { name = "wrap-fn"; packageName = "wrap-fn"; @@ -85178,7 +85224,7 @@ in sources."braces-3.0.2" sources."buffer-5.7.1" sources."builtins-5.0.1" - (sources."cacache-17.0.6" // { + (sources."cacache-17.0.7" // { dependencies = [ sources."@npmcli/fs-3.1.0" sources."brace-expansion-2.0.1" @@ -85197,7 +85243,16 @@ in sources."cli-cursor-3.1.0" sources."cli-spinners-2.8.0" sources."cli-width-3.0.0" - sources."cliui-8.0.1" + (sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" // { + dependencies = [ + sources."ansi-regex-6.0.1" + sources."ansi-styles-6.2.1" + sources."emoji-regex-9.2.2" + sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" + sources."wrap-ansi-8.1.0" + ]; + }) sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -85214,6 +85269,7 @@ in sources."define-lazy-prop-2.0.0" sources."delegates-1.0.0" sources."depd-2.0.0" + sources."eastasianwidth-0.2.0" sources."emoji-regex-8.0.0" (sources."encoding-0.1.13" // { dependencies = [ @@ -85287,7 +85343,7 @@ in sources."is-unicode-supported-0.1.0" sources."is-wsl-2.2.0" sources."isexe-2.0.0" - sources."jackspeak-2.1.1" + sources."jackspeak-2.1.3" sources."json-parse-even-better-errors-3.0.0" sources."json-schema-traverse-1.0.0" sources."jsonc-parser-3.2.0" @@ -85443,8 +85499,10 @@ in ]; }) sources."string-width-4.2.3" + sources."string-width-cjs-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" + sources."strip-ansi-cjs-6.0.1" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."symbol-observable-4.0.0" @@ -85476,9 +85534,10 @@ in sources."validate-npm-package-license-3.0.4" sources."validate-npm-package-name-5.0.0" sources."wcwidth-1.0.1" - sources."which-3.0.0" + sources."which-3.0.1" sources."wide-align-1.1.5" sources."wrap-ansi-7.0.0" + sources."wrap-ansi-cjs-7.0.0" sources."wrappy-1.0.2" sources."y18n-5.0.8" sources."yallist-4.0.0" @@ -85840,13 +85899,13 @@ in "@astrojs/language-server" = nodeEnv.buildNodePackage { name = "_at_astrojs_slash_language-server"; packageName = "@astrojs/language-server"; - version = "0.29.8"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.29.8.tgz"; - sha512 = "Wbh6yPbk7MA4x+TDlhR5WnbIfx+K7oTl8iFUSYw2SsYvB8nHqpvOfQgPUoxPlyG4mowPIoRxkDswuYiNlNCo/A=="; + url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-1.0.0.tgz"; + sha512 = "oEw7AwJmzjgy6HC9f5IdrphZ1GVgfV/+7xQuyf52cpTiRWd/tJISK3MsKP0cDkVlfodmNABNFnAaAWuLZEiiiA=="; }; dependencies = [ - sources."@astrojs/compiler-1.3.2" + sources."@astrojs/compiler-1.4.0" sources."@emmetio/abbreviation-2.3.1" sources."@emmetio/css-abbreviation-2.1.6" sources."@emmetio/scanner-1.0.2" @@ -86005,7 +86064,7 @@ in sources."bytes-3.1.2" sources."cache-content-type-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."canvas-2.11.2" (sources."chalk-4.1.2" // { dependencies = [ @@ -86075,7 +86134,7 @@ in ]; }) sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -86652,10 +86711,10 @@ in "@forge/cli" = nodeEnv.buildNodePackage { name = "_at_forge_slash_cli"; packageName = "@forge/cli"; - version = "6.9.0"; + version = "6.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/cli/-/cli-6.9.0.tgz"; - sha512 = "U6EH1du/+xLIGSvAuCSvgBt06JpMG6EzSlgHJ/xQHITv28BFg9qMj5eX7gG+cBWJ20xIOuDesK1y9FZl8WLC/g=="; + url = "https://registry.npmjs.org/@forge/cli/-/cli-6.9.1.tgz"; + sha512 = "bJII4mR9TzvhbEuiEs0amAsIwx93os6qAR5MeOGXCwB6JyNSHmqJjfBIYff4fs1UCAXuQDx/DRAHP1D6teyY+A=="; }; dependencies = [ sources."@ampproject/remapping-2.2.1" @@ -86713,24 +86772,20 @@ in ]; }) sources."@forge/babel-plugin-transform-ui-1.1.2" - sources."@forge/bundler-4.6.6" - (sources."@forge/cli-shared-3.11.0" // { - dependencies = [ - sources."glob-7.2.3" - ]; - }) - sources."@forge/csp-2.1.2" + sources."@forge/bundler-4.6.7" + sources."@forge/cli-shared-3.11.1" + sources."@forge/csp-2.1.3" (sources."@forge/egress-1.2.0" // { dependencies = [ sources."brace-expansion-2.0.1" sources."minimatch-5.1.6" ]; }) - sources."@forge/lint-3.3.0" - sources."@forge/manifest-4.10.0" - sources."@forge/runtime-4.3.2" + sources."@forge/lint-3.3.1" + sources."@forge/manifest-4.11.0" + sources."@forge/runtime-4.3.3" sources."@forge/storage-1.5.1" - sources."@forge/tunnel-3.3.5" + sources."@forge/tunnel-3.3.6" sources."@forge/util-1.2.3" sources."@jridgewell/gen-mapping-0.3.3" sources."@jridgewell/resolve-uri-3.1.0" @@ -86800,15 +86855,15 @@ in sources."@types/sockjs-0.3.33" sources."@types/ws-8.5.4" sources."@types/yauzl-2.10.0" - sources."@typescript-eslint/types-5.59.1" - (sources."@typescript-eslint/typescript-estree-5.59.1" // { + sources."@typescript-eslint/types-5.59.2" + (sources."@typescript-eslint/typescript-estree-5.59.2" // { dependencies = [ sources."lru-cache-6.0.0" sources."semver-7.5.0" sources."yallist-4.0.0" ]; }) - sources."@typescript-eslint/visitor-keys-5.59.1" + sources."@typescript-eslint/visitor-keys-5.59.2" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -86856,7 +86911,6 @@ in sources."archiver-5.3.1" (sources."archiver-utils-2.1.0" // { dependencies = [ - sources."glob-7.2.3" sources."inherits-2.0.4" sources."readable-stream-2.3.8" sources."safe-buffer-5.1.2" @@ -86935,14 +86989,13 @@ in sources."buffer-xor-1.0.3" sources."buffers-0.1.1" sources."bufferutil-4.0.7" - sources."bunyan-1.8.15" sources."bytes-3.1.2" sources."cacheable-lookup-5.0.4" sources."cacheable-request-7.0.2" sources."call-bind-1.0.2" sources."call-me-maybe-1.0.2" sources."camel-case-4.1.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."case-1.6.3" sources."chai-4.3.7" sources."chainsaw-0.1.0" @@ -87065,7 +87118,6 @@ in sources."domutils-2.8.0" sources."dot-case-3.0.4" sources."dot-prop-5.3.0" - sources."dtrace-provider-0.8.8" sources."duplexer-0.1.2" (sources."duplexer2-0.1.4" // { dependencies = [ @@ -87077,7 +87129,7 @@ in }) sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -87195,7 +87247,7 @@ in sources."get-stream-5.2.0" sources."get-symbol-description-1.0.0" sources."github-from-package-0.0.0" - sources."glob-6.0.4" + sources."glob-7.2.3" sources."glob-parent-5.1.2" sources."glob-to-regexp-0.4.1" sources."globals-11.12.0" @@ -87325,11 +87377,7 @@ in sources."json-buffer-3.0.1" sources."json-parse-even-better-errors-2.3.1" sources."json-schema-ref-parser-9.0.9" - (sources."json-schema-to-typescript-9.1.1" // { - dependencies = [ - sources."glob-7.2.3" - ]; - }) + sources."json-schema-to-typescript-9.1.1" sources."json-schema-traverse-1.0.0" sources."json-schema-typed-7.0.3" sources."json-stable-stringify-1.0.2" @@ -87417,20 +87465,12 @@ in sources."minimist-1.2.8" sources."mkdirp-1.0.4" sources."mkdirp-classic-0.5.3" - sources."moment-2.29.4" sources."mrmime-1.0.1" sources."ms-2.1.2" sources."multicast-dns-7.2.5" sources."mute-stream-0.0.8" - (sources."mv-2.1.1" // { - dependencies = [ - sources."mkdirp-0.5.6" - ]; - }) sources."mz-2.7.0" - sources."nan-2.17.0" sources."napi-build-utils-1.0.2" - sources."ncp-2.0.0" sources."negotiator-0.6.3" sources."neo-async-2.6.2" sources."next-tick-1.1.0" @@ -87628,13 +87668,12 @@ in sources."restore-cursor-3.1.0" sources."retry-0.13.1" sources."reusify-1.0.4" - sources."rimraf-2.4.5" + sources."rimraf-2.7.1" sources."ripemd160-2.0.2" sources."run-async-2.4.1" sources."run-parallel-1.2.0" sources."rxjs-7.8.1" sources."safe-buffer-5.2.1" - sources."safe-json-stringify-1.2.0" sources."safe-regex-test-1.0.0" sources."safer-buffer-2.1.2" sources."sanitize-filename-1.6.3" @@ -87728,12 +87767,7 @@ in sources."timers-browserify-2.0.12" sources."timers-ext-0.1.7" sources."tiny-each-async-2.0.3" - (sources."tmp-0.1.0" // { - dependencies = [ - sources."glob-7.2.3" - sources."rimraf-2.7.1" - ]; - }) + sources."tmp-0.1.0" sources."to-fast-properties-2.0.0" sources."to-readable-stream-1.0.0" sources."to-regex-range-5.0.1" @@ -87768,11 +87802,7 @@ in sources."typed-array-length-1.0.4" sources."typedarray-to-buffer-3.1.5" sources."typescript-4.9.5" - (sources."typescript-json-schema-0.45.1" // { - dependencies = [ - sources."glob-7.2.3" - ]; - }) + sources."typescript-json-schema-0.45.1" sources."unbox-primitive-1.0.2" sources."universalify-0.1.2" sources."unpipe-1.0.0" @@ -87838,7 +87868,6 @@ in sources."ajv-8.12.0" sources."ajv-keywords-5.1.0" sources."fast-deep-equal-3.1.3" - sources."glob-7.2.3" sources."http-proxy-middleware-2.0.6" sources."ipaddr.js-2.0.1" sources."rimraf-3.0.2" @@ -89845,7 +89874,7 @@ in sources."stackframe-1.3.4" sources."stoppable-1.1.0" sources."strict-uri-encode-2.0.0" - sources."string-argv-0.3.1" + sources."string-argv-0.3.2" sources."string-width-4.2.3" sources."string_decoder-1.1.1" sources."strip-ansi-6.0.1" @@ -90148,7 +90177,7 @@ in sources."buffer-5.7.1" sources."buffer-from-1.1.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chalk-4.1.2" sources."chardet-0.7.0" sources."chokidar-3.5.3" @@ -90166,7 +90195,7 @@ in sources."cross-spawn-7.0.3" sources."deepmerge-4.3.1" sources."defaults-1.0.4" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."enhanced-resolve-5.13.0" @@ -90401,12 +90430,12 @@ in sources."@oclif/core-2.1.4" (sources."@oclif/plugin-commands-2.2.10" // { dependencies = [ - sources."@oclif/core-2.8.2" + sources."@oclif/core-2.8.4" ]; }) (sources."@oclif/plugin-help-5.2.6" // { dependencies = [ - sources."@oclif/core-2.8.2" + sources."@oclif/core-2.8.4" ]; }) sources."@oclif/plugin-plugins-2.3.2" @@ -91648,7 +91677,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1368.0" + sources."aws-sdk-2.1369.0" sources."base64-js-1.5.1" (sources."basic-auth-2.0.1" // { dependencies = [ @@ -92250,7 +92279,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -92360,7 +92389,7 @@ in sources."easy-stack-1.0.1" sources."ee-first-1.1.1" sources."ejs-3.1.9" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -93301,7 +93330,13 @@ in sources."abbrev-2.0.0" sources."acorn-8.8.2" sources."acorn-jsx-5.3.2" - sources."ansi-align-3.0.1" + (sources."ansi-align-3.0.1" // { + dependencies = [ + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + ]; + }) sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."array-iterate-2.0.1" @@ -93310,14 +93345,8 @@ in sources."balanced-match-1.0.2" (sources."boxen-7.0.2" // { dependencies = [ - sources."ansi-regex-6.0.1" - sources."ansi-styles-6.2.1" sources."chalk-5.2.0" - sources."emoji-regex-9.2.2" - sources."string-width-5.1.2" - sources."strip-ansi-7.0.1" sources."type-fest-2.19.0" - sources."wrap-ansi-8.1.0" ]; }) sources."brace-expansion-2.0.1" @@ -93339,7 +93368,7 @@ in sources."character-reference-invalid-2.0.1" sources."ci-info-3.8.0" sources."cli-boxes-3.0.0" - sources."cliui-8.0.1" + sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."comma-separated-tokens-2.0.3" @@ -93384,7 +93413,7 @@ in sources."dot-prop-6.0.1" sources."duplexer-0.1.2" sources."eastasianwidth-0.2.0" - sources."emoji-regex-8.0.0" + sources."emoji-regex-9.2.2" sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" sources."escape-goat-4.0.0" @@ -93461,7 +93490,7 @@ in sources."is-yarn-global-0.4.1" sources."isarray-0.0.1" sources."isexe-2.0.0" - sources."jackspeak-2.1.1" + sources."jackspeak-2.1.4" sources."js-tokens-4.0.0" sources."json-buffer-3.0.1" sources."json-parse-even-better-errors-2.3.1" @@ -93506,7 +93535,7 @@ in sources."micromark-core-commonmark-1.0.6" sources."micromark-extension-frontmatter-1.1.0" sources."micromark-extension-gfm-2.0.1" - sources."micromark-extension-gfm-autolink-literal-1.0.3" + sources."micromark-extension-gfm-autolink-literal-1.0.4" sources."micromark-extension-gfm-footnote-1.1.0" sources."micromark-extension-gfm-strikethrough-1.0.5" sources."micromark-extension-gfm-table-1.0.5" @@ -93662,10 +93691,21 @@ in ]; }) sources."stream-combiner-0.0.4" - sources."string-width-4.2.3" + sources."string-width-5.1.2" + (sources."string-width-cjs-4.2.3" // { + dependencies = [ + sources."emoji-regex-8.0.0" + sources."strip-ansi-6.0.1" + ]; + }) sources."string_decoder-0.10.31" sources."stringify-entities-4.0.3" - sources."strip-ansi-6.0.1" + (sources."strip-ansi-7.0.1" // { + dependencies = [ + sources."ansi-regex-6.0.1" + ]; + }) + sources."strip-ansi-cjs-6.0.1" sources."strip-indent-4.0.0" sources."strip-json-comments-2.0.1" sources."supports-color-5.5.0" @@ -93732,10 +93772,6 @@ in sources."vfile-message-3.1.4" (sources."vfile-reporter-7.0.5" // { dependencies = [ - sources."ansi-regex-6.0.1" - sources."emoji-regex-9.2.2" - sources."string-width-5.1.2" - sources."strip-ansi-7.0.1" sources."supports-color-9.3.1" ]; }) @@ -93744,19 +93780,20 @@ in sources."walk-up-path-3.0.1" sources."web-namespaces-2.0.1" sources."which-2.0.2" - (sources."widest-line-4.0.1" // { + sources."widest-line-4.0.1" + (sources."wrap-ansi-8.1.0" // { dependencies = [ - sources."ansi-regex-6.0.1" - sources."emoji-regex-9.2.2" - sources."string-width-5.1.2" - sources."strip-ansi-7.0.1" + sources."ansi-styles-6.2.1" ]; }) - (sources."wrap-ansi-7.0.0" // { + (sources."wrap-ansi-cjs-7.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" ]; }) sources."wrappy-1.0.2" @@ -93831,7 +93868,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."browserslist-4.21.5" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -93841,7 +93878,7 @@ in sources."convert-source-map-1.9.0" sources."debug-4.3.4" sources."ejs-3.1.6" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -94229,8 +94266,8 @@ in }; dependencies = [ sources."browserslist-4.21.5" - sources."caniuse-lite-1.0.30001481" - sources."electron-to-chromium-1.4.377" + sources."caniuse-lite-1.0.30001482" + sources."electron-to-chromium-1.4.378" sources."escalade-3.1.1" sources."fraction.js-4.2.0" sources."nanoid-3.3.6" @@ -94310,7 +94347,7 @@ in sources."ansi-styles-4.3.0" sources."ast-types-0.13.4" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1368.0" // { + (sources."aws-sdk-2.1369.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -94973,10 +95010,10 @@ in balanceofsatoshis = nodeEnv.buildNodePackage { name = "balanceofsatoshis"; packageName = "balanceofsatoshis"; - version = "15.3.0"; + version = "15.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-15.3.0.tgz"; - sha512 = "tx83JW/nacPbIPyPBxkA5n5koSfDYpIKxqrh/HGxg0jBWClbGnY84zH4hzQ3MfM8hBRFa56QYI+De+gjeCbL0A=="; + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-15.4.2.tgz"; + sha512 = "PxzvZlqkPm5GurpMii1hE2uAOV3HCvE/Ze+jxx6UNf8vlXlhcnFxc5VyYzPuLZdjgHGyAr6ku4fBOeIYRszZAg=="; }; dependencies = [ (sources."@alexbosworth/caporal-1.4.4" // { @@ -95386,26 +95423,7 @@ in sources."os-shim-0.1.3" sources."os-tmpdir-1.0.2" sources."p2tr-1.3.3" - (sources."paid-services-5.0.1" // { - dependencies = [ - sources."@grpc/grpc-js-1.8.14" - sources."@grpc/proto-loader-0.7.5" - sources."@types/node-18.16.1" - sources."colorette-2.0.19" - sources."lightning-9.1.0" - sources."ln-service-56.1.0" - (sources."ln-sync-4.3.2" // { - dependencies = [ - sources."@grpc/grpc-js-1.8.12" - sources."@types/node-18.15.0" - sources."lightning-7.1.4" - sources."ln-service-54.10.5" - sources."type-fest-3.6.1" - ]; - }) - sources."type-fest-3.9.0" - ]; - }) + sources."paid-services-5.0.2" sources."parseurl-1.3.3" sources."path-to-regexp-0.1.7" sources."pinkie-2.0.4" @@ -97783,10 +97801,10 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.2.22"; + version = "2.2.24"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.2.22.tgz"; - sha512 = "wfa1YVJDHDTO9nZcxou4tXitQXB4L7flVq9ir1ar7FVLTaCvoZbOP7gTk0Z6QzggiujcbOiGLZSjSgzQKFGvOA=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.2.24.tgz"; + sha512 = "yLzGNS2aGQ37JGJ16UIcChpt4ra9yqKSMNJWXFulno6l4YNyl60VBjwWHlQmAcwesJHftIWFW2aBdPRQXH4a9w=="; }; dependencies = [ sources."@colors/colors-1.5.0" @@ -97843,7 +97861,7 @@ in sources."camelcase-6.3.0" sources."case-1.6.3" sources."cdk8s-2.7.56" - sources."cdk8s-plus-25-2.7.12" + sources."cdk8s-plus-25-2.7.14" sources."chalk-4.1.2" sources."chardet-0.7.0" sources."clean-stack-2.2.0" @@ -97871,7 +97889,7 @@ in sources."combined-stream-1.0.8" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.2.10" + sources."constructs-10.2.12" sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-5.0.1" @@ -97971,7 +97989,7 @@ in sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.898" // { + (sources."jsii-srcmak-0.1.900" // { dependencies = [ sources."fs-extra-9.1.0" ]; @@ -98336,7 +98354,7 @@ in sources."call-bind-1.0.2" sources."callsites-3.1.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."case-1.6.3" sources."cdktf-0.16.1" (sources."chalk-4.1.2" // { @@ -98373,7 +98391,7 @@ in sources."color-name-1.1.3" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.2.10" + sources."constructs-10.2.12" sources."convert-source-map-1.9.0" sources."convert-to-spaces-1.0.2" sources."cookie-0.4.2" @@ -98396,10 +98414,10 @@ in sources."diff-sequences-29.4.3" (sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.1.0-dev.20230429" + sources."typescript-5.1.0-dev.20230501" ]; }) - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emittery-0.13.1" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" @@ -98606,7 +98624,7 @@ in ]; }) sources."jsii-rosetta-5.0.7" - (sources."jsii-srcmak-0.1.898" // { + (sources."jsii-srcmak-0.1.900" // { dependencies = [ sources."ansi-styles-4.3.0" sources."color-convert-2.0.1" @@ -99368,7 +99386,7 @@ in sources."tslib-2.5.0" sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-uri-3.0.7" - sources."which-3.0.0" + sources."which-3.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -100263,7 +100281,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -100300,7 +100318,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -101320,6 +101338,7 @@ in sha512 = "Sh8bGQMEL0TAmAm2meAXMjcASHZa7V0xXQVDBLknCPa9TPtkY9yYs+0cnGGgfdkW0SV1Mlg+hVGfXcoI8d3MJA=="; }; dependencies = [ + sources."@babel/runtime-7.21.5" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" (sources."chalk-4.1.2" // { @@ -101330,13 +101349,14 @@ in sources."cliui-8.0.1" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."date-fns-2.29.3" + sources."date-fns-2.30.0" sources."emoji-regex-8.0.0" sources."escalade-3.1.1" sources."get-caller-file-2.0.5" sources."has-flag-4.0.0" sources."is-fullwidth-code-point-3.0.0" sources."lodash-4.17.21" + sources."regenerator-runtime-0.13.11" sources."require-directory-2.1.1" sources."rxjs-7.8.1" sources."shell-quote-1.8.1" @@ -105037,7 +105057,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -105067,7 +105087,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -105371,21 +105391,21 @@ in sources."strip-json-comments-3.1.1" ]; }) - sources."@fluentui/date-time-utilities-8.5.7" - sources."@fluentui/dom-utilities-2.2.6" - sources."@fluentui/font-icons-mdl2-8.5.13" - sources."@fluentui/foundation-legacy-8.2.33" - sources."@fluentui/keyboard-key-0.4.6" - sources."@fluentui/merge-styles-8.5.7" - sources."@fluentui/react-8.108.2" - sources."@fluentui/react-focus-8.8.19" - sources."@fluentui/react-hooks-8.6.20" + sources."@fluentui/date-time-utilities-8.5.8" + sources."@fluentui/dom-utilities-2.2.7" + sources."@fluentui/font-icons-mdl2-8.5.14" + sources."@fluentui/foundation-legacy-8.2.34" + sources."@fluentui/keyboard-key-0.4.7" + sources."@fluentui/merge-styles-8.5.8" + sources."@fluentui/react-8.108.3" + sources."@fluentui/react-focus-8.8.20" + sources."@fluentui/react-hooks-8.6.21" sources."@fluentui/react-portal-compat-context-9.0.5" - sources."@fluentui/react-window-provider-2.2.9" - sources."@fluentui/set-version-8.2.6" - sources."@fluentui/style-utilities-8.9.6" - sources."@fluentui/theme-2.6.25" - sources."@fluentui/utilities-8.13.9" + sources."@fluentui/react-window-provider-2.2.10" + sources."@fluentui/set-version-8.2.7" + sources."@fluentui/style-utilities-8.9.7" + sources."@fluentui/theme-2.6.26" + sources."@fluentui/utilities-8.13.10" sources."@gar/promisify-1.1.3" (sources."@gulp-sourcemaps/identity-map-2.0.1" // { dependencies = [ @@ -105591,7 +105611,7 @@ in sources."ansi-gray-0.1.1" sources."ansi-red-0.1.1" sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" + sources."ansi-styles-6.2.1" sources."ansi-wrap-0.1.0" sources."any-promise-1.3.0" (sources."anymatch-2.0.0" // { @@ -105720,8 +105740,12 @@ in sources."call-bind-1.0.2" sources."callsites-3.1.0" sources."camelcase-3.0.0" - sources."caniuse-lite-1.0.30001481" - sources."chalk-4.1.2" + sources."caniuse-lite-1.0.30001482" + (sources."chalk-4.1.2" // { + dependencies = [ + sources."ansi-styles-4.3.0" + ]; + }) sources."chardet-0.7.0" (sources."chokidar-2.1.8" // { dependencies = [ @@ -105761,12 +105785,17 @@ in sources."cli-cursor-3.1.0" (sources."cli-highlight-2.1.11" // { dependencies = [ + sources."ansi-styles-4.3.0" sources."cliui-7.0.4" + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + sources."wrap-ansi-7.0.0" sources."yargs-16.2.0" ]; }) sources."cli-width-3.0.0" - sources."cliui-8.0.1" + sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" sources."clone-2.1.2" sources."clone-buffer-1.0.0" sources."clone-response-1.0.3" @@ -105879,10 +105908,11 @@ in ]; }) sources."each-props-1.3.2" + sources."eastasianwidth-0.2.0" sources."ecdsa-sig-formatter-1.0.11" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.377" - sources."emoji-regex-8.0.0" + sources."electron-to-chromium-1.4.378" + sources."emoji-regex-9.2.2" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { dependencies = [ @@ -105932,6 +105962,7 @@ in sources."json-schema-traverse-0.4.1" sources."minimatch-3.1.2" sources."ms-2.1.2" + sources."strip-ansi-6.0.1" sources."strip-json-comments-3.1.1" ]; }) @@ -106070,7 +106101,10 @@ in sources."functions-have-names-1.2.3" (sources."gauge-3.0.2" // { dependencies = [ + sources."emoji-regex-8.0.0" sources."signal-exit-3.0.7" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" ]; }) sources."generate-function-2.3.1" @@ -106262,7 +106296,13 @@ in sources."inflight-1.0.6" sources."inherits-2.0.3" sources."ini-1.3.8" - sources."inquirer-7.3.3" + (sources."inquirer-7.3.3" // { + dependencies = [ + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + ]; + }) sources."internal-slot-1.0.5" sources."interpret-1.4.0" sources."inversify-5.1.1" @@ -106321,7 +106361,7 @@ in sources."isexe-2.0.0" sources."isobject-3.0.1" sources."isomorphic-ws-4.0.1" - sources."jackspeak-2.1.1" + sources."jackspeak-2.1.4" (sources."jest-worker-27.5.1" // { dependencies = [ sources."supports-color-8.1.1" @@ -106599,11 +106639,14 @@ in dependencies = [ sources."are-we-there-yet-3.0.1" sources."brace-expansion-1.1.11" + sources."emoji-regex-8.0.0" sources."gauge-4.0.4" sources."glob-7.2.3" sources."minimatch-3.1.2" sources."npmlog-6.0.2" sources."signal-exit-3.0.7" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" ]; }) sources."node-gyp-build-4.6.0" @@ -106913,7 +106956,11 @@ in ]; }) sources."slash-3.0.0" - sources."slice-ansi-4.0.0" + (sources."slice-ansi-4.0.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + ]; + }) sources."smart-buffer-4.2.0" (sources."snapdragon-0.8.2" // { dependencies = [ @@ -107016,7 +107063,13 @@ in ]; }) sources."streamsearch-0.1.2" - sources."string-width-4.2.3" + sources."string-width-5.1.2" + (sources."string-width-cjs-4.2.3" // { + dependencies = [ + sources."emoji-regex-8.0.0" + sources."strip-ansi-6.0.1" + ]; + }) sources."string.prototype.trim-1.2.7" sources."string.prototype.trimend-1.0.6" sources."string.prototype.trimstart-1.0.6" @@ -107025,7 +107078,12 @@ in sources."safe-buffer-5.2.1" ]; }) - sources."strip-ansi-6.0.1" + (sources."strip-ansi-7.0.1" // { + dependencies = [ + sources."ansi-regex-6.0.1" + ]; + }) + sources."strip-ansi-cjs-6.0.1" sources."strip-bom-2.0.0" sources."strip-bom-string-1.0.0" sources."strip-json-comments-2.0.1" @@ -107035,7 +107093,13 @@ in sources."sver-compat-1.5.0" sources."swagger-schema-official-2.0.0-bab6bed" sources."swagger-ui-dist-3.52.5" - sources."table-6.8.1" + (sources."table-6.8.1" // { + dependencies = [ + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + ]; + }) sources."tail-2.2.6" sources."tapable-2.2.1" (sources."tar-6.1.13" // { @@ -107198,9 +107262,23 @@ in sources."which-boxed-primitive-1.0.2" sources."which-module-1.0.0" sources."which-typed-array-1.1.9" - sources."wide-align-1.1.5" + (sources."wide-align-1.1.5" // { + dependencies = [ + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + ]; + }) sources."word-wrap-1.2.3" - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-8.1.0" + (sources."wrap-ansi-cjs-7.0.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + ]; + }) sources."wrappy-1.0.2" (sources."write-1.0.3" // { dependencies = [ @@ -107225,6 +107303,9 @@ in }) (sources."yargs-17.7.2" // { dependencies = [ + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" sources."yargs-parser-21.1.1" ]; }) @@ -107254,6 +107335,7 @@ in sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" sources."@babel/parser-7.21.5" + sources."@babel/runtime-7.21.5" (sources."@eslint/eslintrc-0.4.3" // { dependencies = [ sources."eslint-visitor-keys-1.3.0" @@ -107666,7 +107748,7 @@ in sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caseless-0.12.0" sources."chalk-2.4.2" @@ -107859,7 +107941,7 @@ in }) sources."cyclist-1.0.1" sources."dashdash-1.14.1" - sources."date-fns-2.29.3" + sources."date-fns-2.30.0" sources."de-indent-1.0.2" sources."debug-4.3.4" sources."decache-4.6.1" @@ -107943,7 +108025,7 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -108984,6 +109066,7 @@ in ]; }) sources."reflect-metadata-0.1.13" + sources."regenerator-runtime-0.13.11" sources."regex-not-1.0.2" sources."regexp.prototype.flags-1.5.0" sources."regexpp-3.2.0" @@ -109607,7 +109690,7 @@ in }; dependencies = [ sources."@eslint-community/eslint-utils-4.4.0" - sources."@eslint-community/regexpp-4.5.0" + sources."@eslint-community/regexpp-4.5.1" sources."@eslint/eslintrc-2.0.2" sources."@eslint/js-8.39.0" sources."@humanwhocodes/config-array-0.11.8" @@ -109724,7 +109807,7 @@ in }; dependencies = [ sources."@eslint-community/eslint-utils-4.4.0" - sources."@eslint-community/regexpp-4.5.0" + sources."@eslint-community/regexpp-4.5.1" sources."@eslint/eslintrc-2.0.2" sources."@eslint/js-8.39.0" sources."@humanwhocodes/config-array-0.11.8" @@ -110360,7 +110443,7 @@ in sources."camel-case-4.1.2" sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -110506,7 +110589,7 @@ in sources."dot-case-3.0.4" sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -111494,7 +111577,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -111520,7 +111603,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.981744" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -111860,7 +111943,7 @@ in sources."semver-5.7.1" ]; }) - sources."csv-parse-5.3.8" + sources."csv-parse-5.3.9" sources."csv-stream-0.2.0" sources."dashdash-1.14.1" sources."debug-4.3.4" @@ -112352,7 +112435,7 @@ in ]; }) sources."crypto-random-string-2.0.0" - sources."csv-parse-5.3.8" + sources."csv-parse-5.3.9" sources."dashdash-1.14.1" sources."data-uri-to-buffer-3.0.1" sources."debug-4.3.4" @@ -114113,7 +114196,7 @@ in ]; }) sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -114174,7 +114257,7 @@ in sources."domhandler-4.3.1" sources."domutils-2.8.0" sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -114896,7 +114979,7 @@ in sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" - sources."which-3.0.0" + sources."which-3.0.1" sources."which-pm-2.0.0" sources."wide-align-1.1.5" sources."wrap-ansi-7.0.0" @@ -115648,18 +115731,19 @@ in dependencies = [ sources."@pkgjs/parseargs-0.11.0" sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" + sources."ansi-styles-6.2.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" - sources."cliui-8.0.1" + sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."cross-spawn-7.0.3" - sources."emoji-regex-8.0.0" + sources."eastasianwidth-0.2.0" + sources."emoji-regex-9.2.2" sources."foreground-child-3.1.1" sources."is-fullwidth-code-point-3.0.0" sources."isexe-2.0.0" - sources."jackspeak-2.1.1" + sources."jackspeak-2.1.4" sources."lru-cache-9.1.1" sources."minimatch-9.0.0" sources."minipass-5.0.0" @@ -115668,10 +115752,29 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.0.1" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" + sources."string-width-5.1.2" + (sources."string-width-cjs-4.2.3" // { + dependencies = [ + sources."emoji-regex-8.0.0" + sources."strip-ansi-6.0.1" + ]; + }) + (sources."strip-ansi-7.0.1" // { + dependencies = [ + sources."ansi-regex-6.0.1" + ]; + }) + sources."strip-ansi-cjs-6.0.1" sources."which-2.0.2" - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-8.1.0" + (sources."wrap-ansi-cjs-7.0.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + ]; + }) ]; buildInputs = globalBuildInputs; meta = { @@ -118634,7 +118737,7 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1368.0" + sources."aws-sdk-2.1369.0" sources."aws-sign2-0.7.0" sources."aws4-1.12.0" sources."base64-js-1.5.1" @@ -120296,7 +120399,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - sources."aws-crt-1.15.15" + sources."aws-crt-1.15.16" (sources."aws-sdk-2.1290.0" // { dependencies = [ sources."buffer-4.9.2" @@ -121465,7 +121568,7 @@ in }; dependencies = [ sources."@eslint-community/eslint-utils-4.4.0" - sources."@eslint-community/regexpp-4.5.0" + sources."@eslint-community/regexpp-4.5.1" (sources."@eslint/eslintrc-2.0.2" // { dependencies = [ sources."debug-4.3.4" @@ -123041,7 +123144,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."canvas-2.11.2" sources."chalk-2.4.2" sources."chardet-1.5.1" @@ -123101,7 +123204,7 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -124157,13 +124260,13 @@ in sources."read-package-json-6.0.2" sources."ssri-10.0.4" sources."validate-npm-package-name-5.0.0" - sources."which-3.0.0" + sources."which-3.0.1" ]; }) sources."@npmcli/fs-3.1.0" (sources."@npmcli/git-4.0.4" // { dependencies = [ - sources."which-3.0.0" + sources."which-3.0.1" ]; }) sources."@npmcli/installed-package-contents-2.0.2" @@ -124182,7 +124285,7 @@ in sources."read-package-json-6.0.2" sources."ssri-10.0.4" sources."validate-npm-package-name-5.0.0" - sources."which-3.0.0" + sources."which-3.0.1" ]; }) (sources."@npmcli/move-file-2.0.1" // { @@ -124198,7 +124301,7 @@ in sources."@npmcli/package-json-3.0.0" (sources."@npmcli/promise-spawn-6.0.2" // { dependencies = [ - sources."which-3.0.0" + sources."which-3.0.1" ]; }) sources."@npmcli/query-3.0.0" @@ -124287,7 +124390,7 @@ in sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@yarnpkg/lockfile-1.1.0" - (sources."@yarnpkg/parsers-3.0.0-rc.42" // { + (sources."@yarnpkg/parsers-3.0.0-rc.43" // { dependencies = [ sources."argparse-1.0.10" sources."js-yaml-3.14.1" @@ -124339,7 +124442,7 @@ in sources."buffer-from-1.1.2" sources."builtins-5.0.1" sources."byte-size-7.0.0" - (sources."cacache-17.0.6" // { + (sources."cacache-17.0.7" // { dependencies = [ sources."minipass-5.0.0" sources."ssri-10.0.4" @@ -124356,7 +124459,16 @@ in sources."cli-cursor-3.1.0" sources."cli-spinners-2.8.0" sources."cli-width-3.0.0" - sources."cliui-8.0.1" + (sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" // { + dependencies = [ + sources."ansi-regex-6.0.1" + sources."ansi-styles-6.2.1" + sources."emoji-regex-9.2.2" + sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" + sources."wrap-ansi-8.1.0" + ]; + }) sources."clone-1.0.4" (sources."clone-deep-4.0.1" // { dependencies = [ @@ -124439,6 +124551,7 @@ in sources."dot-prop-6.0.1" sources."dotenv-10.0.0" sources."duplexer-0.1.2" + sources."eastasianwidth-0.2.0" sources."ejs-3.1.9" sources."emoji-regex-8.0.0" (sources."encoding-0.1.13" // { @@ -124596,7 +124709,7 @@ in sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isobject-3.0.1" - sources."jackspeak-2.1.1" + sources."jackspeak-2.1.4" sources."jake-10.8.5" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" @@ -125059,8 +125172,10 @@ in ]; }) sources."string-width-4.2.3" + sources."string-width-cjs-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" + sources."strip-ansi-cjs-6.0.1" sources."strip-bom-3.0.0" sources."strip-final-newline-2.0.0" sources."strip-indent-3.0.0" @@ -125115,6 +125230,7 @@ in sources."wide-align-1.1.5" sources."wordwrap-1.0.0" sources."wrap-ansi-7.0.0" + sources."wrap-ansi-cjs-7.0.0" sources."wrappy-1.0.2" sources."write-file-atomic-4.0.1" (sources."write-json-file-3.2.0" // { @@ -126401,38 +126517,77 @@ in markdownlint-cli = nodeEnv.buildNodePackage { name = "markdownlint-cli"; packageName = "markdownlint-cli"; - version = "0.33.0"; + version = "0.34.0"; src = fetchurl { - url = "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.33.0.tgz"; - sha512 = "zMK1oHpjYkhjO+94+ngARiBBrRDEUMzooDHBAHtmEIJ9oYddd9l3chCReY2mPlecwH7gflQp1ApilTo+o0zopQ=="; + url = "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.34.0.tgz"; + sha512 = "4G9I++VBTZkaye6Yfc/7dU6HQHcyldZEVB+bYyQJLcpJOHKk/q5ZpGqK80oKMIdlxzsA3aWOJLZ4DkoaoUWXbQ=="; }; dependencies = [ + sources."@pkgjs/parseargs-0.11.0" + sources."ansi-regex-5.0.1" + sources."ansi-styles-6.2.1" sources."argparse-2.0.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" - sources."commander-9.4.1" + sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."commander-10.0.1" + sources."cross-spawn-7.0.3" sources."deep-extend-0.6.0" + sources."eastasianwidth-0.2.0" + sources."emoji-regex-9.2.2" sources."entities-3.0.1" - sources."fs.realpath-1.0.0" + sources."foreground-child-3.1.1" sources."get-stdin-9.0.0" - sources."glob-8.0.3" + sources."glob-10.2.2" sources."ignore-5.2.4" - sources."inflight-1.0.6" - sources."inherits-2.0.4" sources."ini-3.0.1" + sources."is-fullwidth-code-point-3.0.0" + sources."isexe-2.0.0" + sources."jackspeak-2.1.4" sources."js-yaml-4.1.0" sources."jsonc-parser-3.2.0" sources."linkify-it-4.0.1" + sources."lru-cache-9.1.1" sources."markdown-it-13.0.1" - sources."markdownlint-0.27.0" + sources."markdownlint-0.28.2" + sources."markdownlint-micromark-0.1.2" sources."mdurl-1.0.1" - sources."minimatch-5.1.6" + sources."minimatch-9.0.0" sources."minimist-1.2.8" - sources."once-1.4.0" + sources."minipass-5.0.0" + sources."path-key-3.1.1" + sources."path-scurry-1.7.0" sources."run-con-1.2.11" + sources."shebang-command-2.0.0" + sources."shebang-regex-3.0.0" + sources."signal-exit-4.0.1" + sources."string-width-5.1.2" + (sources."string-width-cjs-4.2.3" // { + dependencies = [ + sources."emoji-regex-8.0.0" + sources."strip-ansi-6.0.1" + ]; + }) + (sources."strip-ansi-7.0.1" // { + dependencies = [ + sources."ansi-regex-6.0.1" + ]; + }) + sources."strip-ansi-cjs-6.0.1" sources."strip-json-comments-3.1.1" sources."uc.micro-1.0.6" - sources."wrappy-1.0.2" + sources."which-2.0.2" + sources."wrap-ansi-8.1.0" + (sources."wrap-ansi-cjs-7.0.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + ]; + }) ]; buildInputs = globalBuildInputs; meta = { @@ -126502,10 +126657,10 @@ in markdown-link-check = nodeEnv.buildNodePackage { name = "markdown-link-check"; packageName = "markdown-link-check"; - version = "3.11.1"; + version = "3.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/markdown-link-check/-/markdown-link-check-3.11.1.tgz"; - sha512 = "1O5CYb1qbrQGwG9kx3GKZ1t128ZMojKZwDCrGP7mC/xvXSF8KfMjcSUhdtdhvNJeDyNUO23YaAu7hSD72h9w5Q=="; + url = "https://registry.npmjs.org/markdown-link-check/-/markdown-link-check-3.11.2.tgz"; + sha512 = "zave+vI4AMeLp0FlUllAwGbNytSKsS3R2Zgtf3ufVT892Z/L6Ro9osZwE9PNA7s0IkJ4onnuHqatpsaCiAShJw=="; }; dependencies = [ sources."async-3.2.4" @@ -126834,7 +126989,7 @@ in }) sources."cache-base-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."case-sensitive-paths-webpack-plugin-2.1.2" sources."chalk-2.4.2" sources."chart.js-2.9.4" @@ -126921,7 +127076,7 @@ in sources."domain-browser-1.2.0" sources."duplexify-3.7.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -130648,7 +130803,7 @@ in sources."aggregate-error-3.1.0" sources."ansi-align-3.0.1" sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" + sources."ansi-styles-6.2.1" sources."aproba-2.0.0" sources."are-we-there-yet-3.0.1" sources."argparse-2.0.1" @@ -130657,18 +130812,16 @@ in (sources."boxen-7.0.2" // { dependencies = [ sources."ansi-regex-6.0.1" - sources."ansi-styles-6.2.1" sources."emoji-regex-9.2.2" sources."string-width-5.1.2" sources."strip-ansi-7.0.1" - sources."wrap-ansi-8.1.0" ]; }) sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."buffer-from-1.1.2" sources."builtins-5.0.1" - (sources."cacache-17.0.6" // { + (sources."cacache-17.0.7" // { dependencies = [ sources."@npmcli/fs-3.1.0" sources."glob-10.2.2" @@ -130687,7 +130840,14 @@ in sources."clean-stack-2.2.0" sources."cli-boxes-3.0.0" sources."cli-table3-0.6.3" - sources."cliui-8.0.1" + (sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" // { + dependencies = [ + sources."ansi-regex-6.0.1" + sources."emoji-regex-9.2.2" + sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" + ]; + }) sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."color-support-1.1.3" @@ -130803,7 +130963,7 @@ in sources."is-typedarray-1.0.0" sources."is-yarn-global-0.4.1" sources."isexe-2.0.0" - sources."jackspeak-2.1.1" + sources."jackspeak-2.1.4" sources."jju-1.4.0" sources."js-yaml-4.1.0" sources."json-buffer-3.0.1" @@ -131007,8 +131167,10 @@ in ]; }) sources."string-width-4.2.3" + sources."string-width-cjs-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" + sources."strip-ansi-cjs-6.0.1" sources."strip-json-comments-5.0.0" (sources."tar-6.1.13" // { dependencies = [ @@ -131037,7 +131199,7 @@ in sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" sources."validate-npm-package-name-5.0.0" - sources."which-3.0.0" + sources."which-3.0.1" sources."wide-align-1.1.5" (sources."widest-line-4.0.1" // { dependencies = [ @@ -131047,7 +131209,19 @@ in sources."strip-ansi-7.0.1" ]; }) - sources."wrap-ansi-7.0.0" + (sources."wrap-ansi-8.1.0" // { + dependencies = [ + sources."ansi-regex-6.0.1" + sources."emoji-regex-9.2.2" + sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" + ]; + }) + (sources."wrap-ansi-cjs-7.0.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + ]; + }) sources."wrappy-1.0.2" sources."write-file-atomic-3.0.3" sources."xdg-basedir-5.1.0" @@ -131650,7 +131824,7 @@ in sources."sprintf-js-1.0.3" sources."stacktracey-2.1.8" sources."statuses-2.0.1" - sources."string-argv-0.3.1" + sources."string-argv-0.3.2" sources."string-width-4.2.3" sources."string.prototype.trim-1.2.7" sources."string.prototype.trimend-1.0.6" @@ -131981,7 +132155,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -132114,7 +132288,7 @@ in sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -132909,7 +133083,7 @@ in sources."buffer-from-1.1.2" sources."callsites-3.1.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."caseless-0.12.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -132935,8 +133109,8 @@ in sources."css-tree-2.3.1" sources."css-what-6.1.0" sources."cssesc-3.0.0" - sources."cssnano-6.0.0" - sources."cssnano-preset-default-6.0.0" + sources."cssnano-6.0.1" + sources."cssnano-preset-default-6.0.1" sources."cssnano-utils-4.0.0" (sources."csso-5.0.5" // { dependencies = [ @@ -132959,7 +133133,7 @@ in sources."dotenv-7.0.0" sources."dotenv-expand-5.1.0" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."entities-4.5.0" sources."error-ex-1.3.2" sources."escalade-3.1.1" @@ -133082,7 +133256,7 @@ in sources."picomatch-2.3.1" sources."pn-1.1.0" sources."postcss-8.4.23" - sources."postcss-calc-8.2.4" + sources."postcss-calc-9.0.0" sources."postcss-colormin-6.0.0" sources."postcss-convert-values-6.0.0" sources."postcss-discard-comments-6.0.0" @@ -133090,7 +133264,7 @@ in sources."postcss-discard-empty-6.0.0" sources."postcss-discard-overridden-6.0.0" sources."postcss-merge-longhand-6.0.0" - sources."postcss-merge-rules-6.0.0" + sources."postcss-merge-rules-6.0.1" sources."postcss-minify-font-values-6.0.0" sources."postcss-minify-gradients-6.0.0" sources."postcss-minify-params-6.0.0" @@ -135112,7 +135286,7 @@ in sources."browserslist-4.21.5" sources."caching-transform-4.0.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chalk-2.4.2" sources."clean-stack-2.2.0" sources."cliui-6.0.0" @@ -135125,7 +135299,7 @@ in sources."debug-4.3.4" sources."decamelize-1.2.0" sources."default-require-extensions-3.0.1" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."es6-error-4.1.1" sources."escalade-3.1.1" @@ -136400,7 +136574,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -136621,7 +136795,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -138221,7 +138395,7 @@ in sources."call-me-maybe-1.0.2" sources."camelcase-6.3.0" sources."camelize-1.0.1" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chalk-4.1.2" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" @@ -138258,7 +138432,7 @@ in }) sources."domain-browser-1.2.0" sources."dompurify-2.4.5" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -138670,10 +138844,10 @@ in reveal-md = nodeEnv.buildNodePackage { name = "reveal-md"; packageName = "reveal-md"; - version = "5.4.1"; + version = "5.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/reveal-md/-/reveal-md-5.4.1.tgz"; - sha512 = "pSNiE7ryND/yopuIktKaESTahSMPI2dLPIYLUCAksan6M4v8V5b1GjDaFCgF1wC0qcTZqUS34I8HBYoMStb/AQ=="; + url = "https://registry.npmjs.org/reveal-md/-/reveal-md-5.5.0.tgz"; + sha512 = "qxHCjeYjKGHIqfptw7qpy8HuwnpJJufr4baxhNAWC+YltKD0hHmCACXy9+6fAEcKRtb99fase6DtwH/jL5O+Ng=="; }; dependencies = [ sources."@sindresorhus/is-0.14.0" @@ -138768,7 +138942,7 @@ in }) sources."forwarded-0.2.0" sources."fresh-0.5.2" - sources."fs-extra-11.1.0" + sources."fs-extra-11.1.1" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -138783,7 +138957,7 @@ in sources."has-flag-4.0.0" sources."has-symbols-1.0.3" sources."has-yarn-2.1.0" - sources."highlight.js-11.7.0" + sources."highlight.js-11.8.0" sources."http-cache-semantics-4.1.1" sources."http-errors-2.0.0" (sources."https-proxy-agent-2.2.4" // { @@ -138890,7 +139064,7 @@ in sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" sources."responselike-1.0.2" - sources."reveal.js-4.4.0" + sources."reveal.js-4.5.0" (sources."rimraf-2.7.1" // { dependencies = [ sources."brace-expansion-1.1.11" @@ -138986,19 +139160,20 @@ in dependencies = [ sources."@pkgjs/parseargs-0.11.0" sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" + sources."ansi-styles-6.2.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" - sources."cliui-8.0.1" + sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."cross-spawn-7.0.3" - sources."emoji-regex-8.0.0" + sources."eastasianwidth-0.2.0" + sources."emoji-regex-9.2.2" sources."foreground-child-3.1.1" sources."glob-10.2.2" sources."is-fullwidth-code-point-3.0.0" sources."isexe-2.0.0" - sources."jackspeak-2.1.1" + sources."jackspeak-2.1.4" sources."lru-cache-9.1.1" sources."minimatch-9.0.0" sources."minipass-5.0.0" @@ -139007,10 +139182,29 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.0.1" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" + sources."string-width-5.1.2" + (sources."string-width-cjs-4.2.3" // { + dependencies = [ + sources."emoji-regex-8.0.0" + sources."strip-ansi-6.0.1" + ]; + }) + (sources."strip-ansi-7.0.1" // { + dependencies = [ + sources."ansi-regex-6.0.1" + ]; + }) + sources."strip-ansi-cjs-6.0.1" sources."which-2.0.2" - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-8.1.0" + (sources."wrap-ansi-cjs-7.0.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + ]; + }) ]; buildInputs = globalBuildInputs; meta = { @@ -139025,10 +139219,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "3.21.1"; + version = "3.21.2"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.21.1.tgz"; - sha512 = "GpUgqWCw56OSiBKf7lcAITstYiBV1/EKaKYPl9r8HgAxc6/qYAVw1PaHWnvHWFziRaf4HsVCDLq/IGtBi1K/Zw=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.21.2.tgz"; + sha512 = "c4vC+JZ3bbF4Kqq2TtM7zSKtSyMybFOjqmomFax3xpfYaPZDZ4iz8NMIuBRMjnXOcKYozw7bC6vhJjiWD6JpzQ=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -139050,7 +139244,7 @@ in src = ../../applications/editors/vscode/extensions/rust-lang.rust-analyzer/build-deps; dependencies = [ sources."@eslint-community/eslint-utils-4.4.0" - sources."@eslint-community/regexpp-4.5.0" + sources."@eslint-community/regexpp-4.5.1" (sources."@eslint/eslintrc-2.0.2" // { dependencies = [ sources."brace-expansion-1.1.11" @@ -139075,14 +139269,14 @@ in sources."@types/node-16.11.68" sources."@types/semver-7.3.13" sources."@types/vscode-1.66.0" - sources."@typescript-eslint/eslint-plugin-5.59.1" - sources."@typescript-eslint/parser-5.59.1" - sources."@typescript-eslint/scope-manager-5.59.1" - sources."@typescript-eslint/type-utils-5.59.1" - sources."@typescript-eslint/types-5.59.1" - sources."@typescript-eslint/typescript-estree-5.59.1" - sources."@typescript-eslint/utils-5.59.1" - sources."@typescript-eslint/visitor-keys-5.59.1" + sources."@typescript-eslint/eslint-plugin-5.59.2" + sources."@typescript-eslint/parser-5.59.2" + sources."@typescript-eslint/scope-manager-5.59.2" + sources."@typescript-eslint/type-utils-5.59.2" + sources."@typescript-eslint/types-5.59.2" + sources."@typescript-eslint/typescript-estree-5.59.2" + sources."@typescript-eslint/utils-5.59.2" + sources."@typescript-eslint/visitor-keys-5.59.2" sources."@vscode/test-electron-2.3.0" sources."acorn-8.8.2" sources."acorn-jsx-5.3.2" @@ -139793,7 +139987,7 @@ in sources."asynckit-0.4.0" sources."at-least-node-1.0.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1368.0" // { + (sources."aws-sdk-2.1369.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -142275,7 +142469,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1368.0" // { + (sources."aws-sdk-2.1369.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -143512,7 +143706,7 @@ in sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -143530,7 +143724,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."errno-0.1.8" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -143771,7 +143965,7 @@ in sources."browserslist-4.21.5" sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -143790,7 +143984,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emmet-2.4.2" sources."errno-0.1.8" sources."es6-promise-3.3.1" @@ -146176,7 +146370,7 @@ in dependencies = [ sources."@babel/runtime-7.21.5" sources."@eslint-community/eslint-utils-4.4.0" - sources."@eslint-community/regexpp-4.5.0" + sources."@eslint-community/regexpp-4.5.1" (sources."@eslint/eslintrc-2.0.2" // { dependencies = [ sources."debug-4.3.4" @@ -150334,7 +150528,7 @@ in sources."@types/unist-2.0.6" sources."abbrev-2.0.0" sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" + sources."ansi-styles-6.2.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."buffer-from-1.1.2" @@ -150345,14 +150539,14 @@ in sources."color-name-1.1.3" ]; }) - sources."cliui-8.0.1" + sources."cliui-git+https://github.com/isaacs/cliui#isaacs/esm-cjs-consistency" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."concat-stream-2.0.0" sources."cross-spawn-7.0.3" sources."debug-4.3.4" sources."eastasianwidth-0.2.0" - sources."emoji-regex-8.0.0" + sources."emoji-regex-9.2.2" sources."error-ex-1.3.2" sources."escape-string-regexp-1.0.5" sources."fault-2.0.1" @@ -150373,7 +150567,7 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-plain-obj-4.1.0" sources."isexe-2.0.0" - sources."jackspeak-2.1.1" + sources."jackspeak-2.1.4" sources."js-tokens-4.0.0" sources."json-parse-even-better-errors-3.0.0" sources."lines-and-columns-2.0.3" @@ -150408,9 +150602,20 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.0.1" - sources."string-width-4.2.3" + sources."string-width-5.1.2" + (sources."string-width-cjs-4.2.3" // { + dependencies = [ + sources."emoji-regex-8.0.0" + sources."strip-ansi-6.0.1" + ]; + }) sources."string_decoder-1.3.0" - sources."strip-ansi-6.0.1" + (sources."strip-ansi-7.0.1" // { + dependencies = [ + sources."ansi-regex-6.0.1" + ]; + }) + sources."strip-ansi-cjs-6.0.1" sources."supports-color-5.5.0" sources."to-vfile-7.2.4" sources."trough-2.1.0" @@ -150428,10 +150633,6 @@ in sources."vfile-message-3.1.4" (sources."vfile-reporter-7.0.5" // { dependencies = [ - sources."ansi-regex-6.0.1" - sources."emoji-regex-9.2.2" - sources."string-width-5.1.2" - sources."strip-ansi-7.0.1" sources."supports-color-9.3.1" ]; }) @@ -150444,7 +150645,15 @@ in sources."vscode-languageserver-types-3.17.3" sources."walk-up-path-3.0.1" sources."which-2.0.2" - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-8.1.0" + (sources."wrap-ansi-cjs-7.0.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."emoji-regex-8.0.0" + sources."string-width-4.2.3" + sources."strip-ansi-6.0.1" + ]; + }) sources."wrappy-1.0.2" sources."yallist-4.0.0" sources."yaml-2.2.2" @@ -150634,10 +150843,10 @@ in vega-lite = nodeEnv.buildNodePackage { name = "vega-lite"; packageName = "vega-lite"; - version = "5.7.1"; + version = "5.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.7.1.tgz"; - sha512 = "EhFMH2yo5MvrHAK/KSWgA9jnsJIv4/nrMgAbjkGTjalfsEkxvGnsO1EOlbDWXKF4Vud+4lDmEYuCs7VvZk9nSg=="; + url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.8.0.tgz"; + sha512 = "b2X/YEa9Tdhxgk+kwepUk0Nriu9l8WnJl0kTHTCDqc/BvBIEJ3d12PI20Pb0m39xTw02mQL9uW3IGgFyBqhuSw=="; }; dependencies = [ sources."@types/clone-2.1.1" @@ -150693,24 +150902,16 @@ in }) sources."tr46-0.0.3" sources."tslib-2.5.0" - (sources."vega-5.25.0" // { - dependencies = [ - sources."vega-expression-5.1.0" - ]; - }) + sources."vega-5.25.0" sources."vega-canvas-1.2.7" sources."vega-crossfilter-4.1.1" sources."vega-dataflow-5.7.5" sources."vega-encode-4.9.2" sources."vega-event-selector-3.0.1" - sources."vega-expression-5.0.1" + sources."vega-expression-5.1.0" sources."vega-force-4.2.0" sources."vega-format-1.1.1" - (sources."vega-functions-5.13.2" // { - dependencies = [ - sources."vega-expression-5.1.0" - ]; - }) + sources."vega-functions-5.13.2" sources."vega-geo-4.4.1" sources."vega-hierarchy-4.1.1" sources."vega-label-1.2.1" @@ -150755,10 +150956,10 @@ in vercel = nodeEnv.buildNodePackage { name = "vercel"; packageName = "vercel"; - version = "29.0.0"; + version = "29.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/vercel/-/vercel-29.0.0.tgz"; - sha512 = "ECgAIq6cu45TNJgG/q+tWInfRFN60b7w4WxH/CLKC8s+yKJiiQxp6fnyKkp90liXix1DyWdWPmJD11BhCQh+/Q=="; + url = "https://registry.npmjs.org/vercel/-/vercel-29.0.3.tgz"; + sha512 = "wKc9Ee5jNQAVRNFGen9zAzF/RaaeIJ1dcd5Zkz55CjjunI5UA2+zTYTBbUEqFNyrrRWrBDcqreNfq5/AgiA5BA=="; }; dependencies = [ sources."@adobe/css-tools-4.2.0" @@ -150993,16 +151194,20 @@ in sources."lru-cache-6.0.0" ]; }) + sources."utf-8-validate-5.0.10" + sources."ws-7.5.9" ]; }) - sources."@remix-run/express-1.15.0" - (sources."@remix-run/node-1.15.0" // { + sources."@remix-run/express-1.16.0" + (sources."@remix-run/node-1.16.0" // { dependencies = [ + sources."@remix-run/router-1.6.0" + sources."@remix-run/server-runtime-1.16.0" sources."cookie-signature-1.2.1" ]; }) sources."@remix-run/router-1.5.0" - sources."@remix-run/serve-1.15.0" + sources."@remix-run/serve-1.16.0" sources."@remix-run/server-runtime-1.15.0" sources."@remix-run/web-blob-3.0.4" sources."@remix-run/web-fetch-4.3.4" @@ -151069,16 +151274,16 @@ in sources."@babel/runtime-7.12.1" ]; }) - (sources."@vercel/gatsby-plugin-vercel-builder-1.3.0" // { + (sources."@vercel/gatsby-plugin-vercel-builder-1.3.1" // { dependencies = [ sources."fs-extra-11.1.0" ]; }) sources."@vercel/go-2.5.1" sources."@vercel/hydrogen-0.0.64" - sources."@vercel/next-3.7.6" + sources."@vercel/next-3.8.2" sources."@vercel/nft-0.22.5" - sources."@vercel/node-2.13.0" + sources."@vercel/node-2.14.0" sources."@vercel/python-3.1.60" sources."@vercel/redwood-1.1.15" (sources."@vercel/remix-builder-1.8.6" // { @@ -151094,7 +151299,7 @@ in ]; }) sources."@vercel/ruby-1.3.76" - sources."@vercel/static-build-1.3.26" + sources."@vercel/static-build-1.3.27" sources."@vercel/static-config-2.0.17" sources."@web3-storage/multipart-parser-1.0.0" sources."@zxing/text-encoding-0.9.0" @@ -151153,6 +151358,7 @@ in sources."buffer-5.7.1" sources."buffer-from-1.1.2" sources."bufferutil-4.0.7" + sources."busboy-1.6.0" sources."bytes-3.1.2" sources."cac-6.7.14" (sources."cacache-15.3.0" // { @@ -151168,7 +151374,7 @@ in ]; }) sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -151264,7 +151470,7 @@ in ]; }) sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -151725,7 +151931,7 @@ in sources."restore-cursor-3.1.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" - sources."rollup-3.21.1" + sources."rollup-3.21.2" (sources."rollup-plugin-inject-3.0.2" // { dependencies = [ sources."estree-walker-0.6.1" @@ -151795,6 +152001,7 @@ in sources."statuses-2.0.1" sources."stream-shift-1.0.1" sources."stream-slice-0.1.2" + sources."streamsearch-1.1.0" sources."string-hash-1.1.3" sources."string-width-4.2.3" sources."string_decoder-1.3.0" @@ -151842,6 +152049,7 @@ in sources."type-is-1.6.18" sources."typescript-4.9.5" sources."ufo-1.1.1" + sources."undici-5.22.0" sources."unicode-canonical-property-names-ecmascript-2.0.0" sources."unicode-match-property-ecmascript-2.0.0" sources."unicode-match-property-value-ecmascript-2.1.0" @@ -151862,7 +152070,7 @@ in sources."unpipe-1.0.0" sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" - sources."utf-8-validate-5.0.10" + sources."utf-8-validate-6.0.3" sources."util-0.12.5" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" @@ -151927,7 +152135,7 @@ in ]; }) sources."wrappy-1.0.2" - sources."ws-7.5.9" + sources."ws-8.13.0" (sources."xdm-2.1.0" // { dependencies = [ sources."estree-util-is-identifier-name-2.1.0" @@ -151994,7 +152202,7 @@ in ]; }) sources."@eslint-community/eslint-utils-4.4.0" - sources."@eslint-community/regexpp-4.5.0" + sources."@eslint-community/regexpp-4.5.1" sources."@eslint/eslintrc-2.0.2" sources."@eslint/js-8.39.0" sources."@humanwhocodes/config-array-0.11.8" @@ -153793,7 +154001,7 @@ in sources."@devicefarmer/adbkit-logcat-2.1.3" sources."@devicefarmer/adbkit-monkey-1.2.1" sources."@eslint-community/eslint-utils-4.4.0" - sources."@eslint-community/regexpp-4.5.0" + sources."@eslint-community/regexpp-4.5.1" (sources."@eslint/eslintrc-2.0.2" // { dependencies = [ sources."ajv-6.12.6" @@ -154510,10 +154718,10 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."enhanced-resolve-5.13.0" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" @@ -154614,13 +154822,13 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chrome-trace-event-1.0.3" sources."clone-deep-4.0.1" sources."colorette-2.0.20" sources."commander-10.0.1" sources."cross-spawn-7.0.3" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."enhanced-resolve-5.13.0" sources."envinfo-7.8.1" sources."es-module-lexer-1.2.1" @@ -154789,7 +154997,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.0.0" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" sources."colorette-2.0.20" @@ -154817,7 +155025,7 @@ in sources."dns-equal-1.0.0" sources."dns-packet-5.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."encodeurl-1.0.2" sources."enhanced-resolve-5.13.0" sources."es-module-lexer-1.2.1" @@ -155093,11 +155301,11 @@ in sources."braces-3.0.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001481" + sources."caniuse-lite-1.0.30001482" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."dir-glob-3.0.1" - sources."electron-to-chromium-1.4.377" + sources."electron-to-chromium-1.4.378" sources."enhanced-resolve-5.13.0" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" @@ -155675,10 +155883,10 @@ in wrangler = nodeEnv.buildNodePackage { name = "wrangler"; packageName = "wrangler"; - version = "2.17.0"; + version = "2.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/wrangler/-/wrangler-2.17.0.tgz"; - sha512 = "ucmVHP5BAUVyC/18hReEKgxGSgU0EOxGd+ElHRHVBeGH6LPcsOoC1TolTaDYYnbOuZMbYmHAR5OH1agayr3kZg=="; + url = "https://registry.npmjs.org/wrangler/-/wrangler-2.18.0.tgz"; + sha512 = "e+WJ019AbioAf9u4YiOxjrfKqzOP8K3kDAM9v+lGQa+WKsae/UVcMb3Hn5iMIlIt2fc622WefZfuSNRpkAzrSA=="; }; dependencies = [ sources."@cloudflare/kv-asset-handler-0.2.0" @@ -155866,7 +156074,7 @@ in dependencies = [ sources."@babel/runtime-7.21.5" sources."@eslint-community/eslint-utils-4.4.0" - sources."@eslint-community/regexpp-4.5.0" + sources."@eslint-community/regexpp-4.5.1" (sources."@eslint/eslintrc-2.0.2" // { dependencies = [ sources."debug-4.3.4" @@ -157467,10 +157675,10 @@ in zx = nodeEnv.buildNodePackage { name = "zx"; packageName = "zx"; - version = "7.2.1"; + version = "7.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/zx/-/zx-7.2.1.tgz"; - sha512 = "TgKwppaMLMNAXHhlhbBh7rMoOSx3/9qqnkv8frmhVlSomEuWkDijh/BCmYntkoS7ZQyemApAUyEi24jIrrS+hA=="; + url = "https://registry.npmjs.org/zx/-/zx-7.2.2.tgz"; + sha512 = "50Gjicd6ijTt7Zcz5fNX+rHrmE0uVqC+X6lYKhf2Cu8wIxDpNIzXwTmzchNdW+JY3LFsRcU43B1lHE4HBMmKgQ=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.5" @@ -157481,7 +157689,7 @@ in sources."@types/minimist-1.2.2" sources."@types/node-18.16.3" sources."@types/ps-tree-1.1.2" - sources."@types/which-2.0.2" + sources."@types/which-3.0.0" sources."braces-3.0.2" sources."chalk-5.2.0" sources."data-uri-to-buffer-4.0.1" @@ -157495,6 +157703,7 @@ in sources."formdata-polyfill-4.0.10" sources."from-0.1.7" sources."fs-extra-11.1.1" + sources."fx-27.0.0" sources."glob-parent-5.1.2" sources."globby-13.1.4" sources."graceful-fs-4.2.11" @@ -157509,7 +157718,7 @@ in sources."micromatch-4.0.5" sources."minimist-1.2.8" sources."node-domexception-1.0.0" - sources."node-fetch-3.2.10" + sources."node-fetch-3.3.1" sources."path-type-4.0.0" sources."pause-stream-0.0.11" sources."picomatch-2.3.1" @@ -157525,7 +157734,7 @@ in sources."universalify-2.0.0" sources."web-streams-polyfill-3.2.1" sources."webpod-0.0.2" - sources."which-3.0.0" + sources."which-3.0.1" sources."yaml-2.2.2" ]; buildInputs = globalBuildInputs; From 02d16c1d6f051e73acfec21850aa95649d8946a6 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 1 May 2023 22:37:48 -0400 Subject: [PATCH 40/43] nerdfix: 0.2.1 -> 0.2.2 Diff: https://github.com/loichyan/nerdfix/compare/v0.2.1...v0.2.2 Changelog: https://github.com/loichyan/nerdfix/blob/v0.2.2/CHANGELOG.md --- pkgs/tools/text/nerdfix/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/text/nerdfix/default.nix b/pkgs/tools/text/nerdfix/default.nix index ebf668d7d5d8..ce8db6d9cb99 100644 --- a/pkgs/tools/text/nerdfix/default.nix +++ b/pkgs/tools/text/nerdfix/default.nix @@ -5,16 +5,16 @@ rustPlatform.buildRustPackage rec { pname = "nerdfix"; - version = "0.2.1"; + version = "0.2.2"; src = fetchFromGitHub { owner = "loichyan"; repo = "nerdfix"; rev = "v${version}"; - hash = "sha256-bohN3RXGZObDSDsggKmqKdLx37o8llTwIcpDQIbxEUo="; + hash = "sha256-cC8BuDTYpXKAtbIylpLQKZG84N/kMp0jirqJanvEvZo="; }; - cargoHash = "sha256-T5t+PvzCKfwiKQR/WWKxcoulSRhTNdiLDfoLnKO2qJ0="; + cargoHash = "sha256-K5bZRHce71hFvw7Ipbk4nazg/Wh4I161/MTQmTZakrQ="; meta = with lib; { description = "Nerdfix helps you to find/fix obsolete nerd font icons in your project"; From 0105a68468a628af5b2d6c711b510498e3d3faf9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 May 2023 03:07:04 +0000 Subject: [PATCH 41/43] terraform-providers.github: 5.23.0 -> 5.24.0 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 22b8609c3bbf..2e2a28d21830 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -419,11 +419,11 @@ "vendorHash": "sha256-uWTY8cFztXFrQQ7GW6/R+x9M6vHmsb934ldq+oeW5vk=" }, "github": { - "hash": "sha256-iFYYKFPa9+pTpmTddFzqB1yRwBnp8NG281oxQP7V6+U=", + "hash": "sha256-gMuQNI0+zvveVqyhRdIyPyxVNfdk6PUXpf4Iv2Y+jI4=", "homepage": "https://registry.terraform.io/providers/integrations/github", "owner": "integrations", "repo": "terraform-provider-github", - "rev": "v5.23.0", + "rev": "v5.24.0", "spdx": "MIT", "vendorHash": null }, From f7251fd62a591ee9138d9c7c3943711206f37ca4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 May 2023 03:10:06 +0000 Subject: [PATCH 42/43] terraform-providers.rancher2: 2.0.0 -> 3.0.0 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 2e2a28d21830..cbf2c0bdb439 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -927,13 +927,13 @@ "vendorHash": "sha256-j+3qtGlueKZgf0LuNps4Wc9G3EmpSgl8ZNSLqslyizI=" }, "rancher2": { - "hash": "sha256-UM000GXkWwNWYM1El3wjXgqbmcMkD9Gl69ZARSJOfZo=", + "hash": "sha256-UDVKmOON190eQzGrxzVtq7gDYeKBBM1nnL2ujU1wDo8=", "homepage": "https://registry.terraform.io/providers/rancher/rancher2", "owner": "rancher", "repo": "terraform-provider-rancher2", - "rev": "v2.0.0", + "rev": "v3.0.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-Ntq4wxXPUGbu4+6X1pBsmQsqfJ/jccTiHDJeHVpWe8Y=" + "vendorHash": "sha256-RSHI994zW7rzA/SJ/Ioilg7mQB/VbDInSeZ9IaEYVIc=" }, "random": { "hash": "sha256-IsXKdS3B5kWY5LlNKM0fYjp2uM96ngi6vZ9F46MmfcA=", From 84a94cf56dc836293fb418ed9eeea862bce74fb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 1 May 2023 21:42:06 -0700 Subject: [PATCH 43/43] mopidy-ytmusic: use ytmusicapi 0.25.1 --- pkgs/applications/audio/mopidy/ytmusic.nix | 23 +++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/audio/mopidy/ytmusic.nix b/pkgs/applications/audio/mopidy/ytmusic.nix index 70c7942f3d76..3b0927bbbcd5 100644 --- a/pkgs/applications/audio/mopidy/ytmusic.nix +++ b/pkgs/applications/audio/mopidy/ytmusic.nix @@ -3,20 +3,33 @@ , mopidy }: -python3.pkgs.buildPythonApplication rec { +let + python = python3.override { + packageOverrides = self: super: { + ytmusicapi = super.ytmusicapi.overridePythonAttrs (old: rec { + version = "0.25.1"; + src = self.fetchPypi { + inherit (old) pname; + inherit version; + hash = "sha256-uc/fgDetSYaCRzff0SzfbRhs3TaKrfE2h6roWkkj8yQ="; + }; + }); + }; + }; +in python.pkgs.buildPythonApplication rec { pname = "mopidy-ytmusic"; version = "0.3.8"; - src = python3.pkgs.fetchPypi { + src = python.pkgs.fetchPypi { inherit version; pname = "mopidy_ytmusic"; sha256 = "6b4d8ff9c477dbdd30d0259a009494ebe104cad3f8b37241ae503e5bce4ec2e8"; }; propagatedBuildInputs = [ - (mopidy.override { pythonPackages = python3.pkgs; }) - python3.pkgs.ytmusicapi - python3.pkgs.pytube + (mopidy.override { pythonPackages = python.pkgs; }) + python.pkgs.ytmusicapi + python.pkgs.pytube ]; pythonImportsCheck = [ "mopidy_ytmusic" ];