lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
2e00ed44 5870dfba

+1649 -1391
+1 -1
pkgs/applications/audio/quodlibet/default.nix
··· 18 18 19 19 nativeBuildInputs = [ wrapGAppsHook gettext ]; 20 20 21 - checkInputs = [ gdk-pixbuf hicolor-icon-theme ] ++ (with python3.pkgs; [ pytest pytest_xdist polib xvfb-run dbus.daemon glibcLocales ]); 21 + checkInputs = [ gdk-pixbuf hicolor-icon-theme ] ++ (with python3.pkgs; [ pytest pytest-xdist polib xvfb-run dbus.daemon glibcLocales ]); 22 22 23 23 buildInputs = [ gnome.adwaita-icon-theme libsoup glib glib-networking gtk3 webkitgtk gdk-pixbuf keybinder3 gtksourceview libmodplug libappindicator-gtk3 kakasi gobject-introspection ] 24 24 ++ (if xineBackend then [ xine-lib ] else with gst_all_1;
+17 -15
pkgs/applications/audio/strawberry/default.nix
··· 19 19 , protobuf 20 20 , sqlite 21 21 , taglib 22 - , libpulseaudio ? null 23 - , libselinux ? null 24 - , libsepol ? null 25 - , p11-kit ? null 26 - , util-linux ? null 22 + , libpulseaudio 23 + , libselinux 24 + , libsepol 25 + , p11-kit 26 + , util-linux 27 27 , qtbase 28 28 , qtx11extras 29 29 , qttools 30 30 , withGstreamer ? true 31 - , gst_all_1 ? null 31 + , glib-networking 32 + , gst_all_1 32 33 , withVlc ? true 33 - , libvlc ? null 34 + , libvlc 34 35 }: 35 36 36 37 mkDerivation rec { ··· 61 62 taglib 62 63 qtbase 63 64 qtx11extras 64 - ] 65 - ++ lib.optionals stdenv.isLinux [ 65 + ] ++ lib.optionals stdenv.isLinux [ 66 66 libpulseaudio 67 67 libselinux 68 68 libsepol 69 69 p11-kit 70 - ] 71 - ++ lib.optionals withGstreamer (with gst_all_1; [ 70 + ] ++ lib.optionals withGstreamer (with gst_all_1; [ 71 + glib-networking 72 72 gstreamer 73 73 gst-plugins-base 74 74 gst-plugins-good 75 75 gst-plugins-ugly 76 - ]) 77 - ++ lib.optional withVlc libvlc; 76 + ]) ++ lib.optional withVlc libvlc; 78 77 79 78 nativeBuildInputs = [ 80 79 cmake ··· 85 84 util-linux 86 85 ]; 87 86 88 - postInstall = '' 89 - qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0") 87 + postInstall = lib.optionalString withGstreamer '' 88 + qtWrapperArgs+=( 89 + --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" 90 + --prefix GIO_EXTRA_MODULES : "${glib-networking.out}/lib/gio/modules" 91 + ) 90 92 ''; 91 93 92 94 meta = with lib; {
+31
pkgs/applications/graphics/coreimage/default.nix
··· 1 + { mkDerivation, lib, fetchFromGitLab, libcprime, qtbase, cmake, ninja }: 2 + 3 + mkDerivation rec { 4 + pname = "coreimage"; 5 + version = "4.2.0"; 6 + 7 + src = fetchFromGitLab { 8 + owner = "cubocore/coreapps"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-dxRHzSG5ea1MhpTjgZbFztV9mElEaeOK4NsmieSgf5Q"; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + cmake 16 + ninja 17 + ]; 18 + 19 + buildInputs = [ 20 + qtbase 21 + libcprime 22 + ]; 23 + 24 + meta = with lib; { 25 + description = "An image viewer from the C Suite"; 26 + homepage = "https://gitlab.com/cubocore/coreapps/coreimage"; 27 + license = licenses.gpl3Plus; 28 + maintainers = with maintainers; [ dan4ik605743 ]; 29 + platforms = platforms.linux; 30 + }; 31 + }
+1 -1
pkgs/applications/graphics/cq-editor/default.nix
··· 41 41 pytest 42 42 pytest-xvfb 43 43 pytest-mock 44 - pytestcov 44 + pytest-cov 45 45 pytest-repeat 46 46 pytest-qt 47 47 ];
+1 -1
pkgs/applications/misc/buku/default.nix
··· 12 12 }; 13 13 14 14 checkInputs = [ 15 - pytestcov 15 + pytest-cov 16 16 hypothesis 17 17 pytest 18 18 pylint
+2 -2
pkgs/applications/misc/cherrytree/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "cherrytree"; 22 - version = "0.99.38"; 22 + version = "0.99.39"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "giuspen"; 26 26 repo = "cherrytree"; 27 27 rev = version; 28 - sha256 = "sha256-04MRw6pMtJGxTMKwOzPNGg1T85SfVY5bMkF3gt2V0e0="; 28 + sha256 = "sha256-QSRYtnZxLAaq42PvPd5+LxSzq/Hd/Cz5bquBTiGWnAE="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+1 -1
pkgs/applications/misc/coursera-dl/default.nix
··· 18 18 19 19 buildInputs = with pythonPackages; [ glibcLocales ]; 20 20 21 - propagatedBuildInputs = with pythonPackages; [ attrs beautifulsoup4 ConfigArgParse keyring pyasn1 requests six urllib3 ]; 21 + propagatedBuildInputs = with pythonPackages; [ attrs beautifulsoup4 configargparse keyring pyasn1 requests six urllib3 ]; 22 22 23 23 checkInputs = with pythonPackages; [ pytest mock ]; 24 24
+5 -3
pkgs/applications/misc/electrum/default.nix
··· 20 20 }: 21 21 22 22 let 23 - version = "4.1.3"; 23 + version = "4.1.5"; 24 24 25 25 libsecp256k1_name = 26 26 if stdenv.isLinux then "libsecp256k1.so.0" ··· 36 36 owner = "spesmilo"; 37 37 repo = "electrum"; 38 38 rev = version; 39 - sha256 = "1nkcybalkfna9zn33dxm13ic3brj50cfzwspjl349rgyar07j781"; 39 + sha256 = "1ps8yaps5kfd7yv7bpdvssbwm6f5qivxcvhwn17cpddc2760a7nk"; 40 40 41 41 extraPostFetch = '' 42 42 mv $out ./all ··· 51 51 52 52 src = fetchurl { 53 53 url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz"; 54 - sha256 = "1mlwpmgfm3n45agx65jzsi4dr8nxf95x7nl01jnwa3qk5krrv4cf"; 54 + sha256 = "188r4zji985z8pm9b942xhmvv174yndk6jxagxl7ljk03wl2wiwi"; 55 55 }; 56 56 57 57 postUnpack = '' ··· 154 154 of the blockchain. 155 155 ''; 156 156 homepage = "https://electrum.org/"; 157 + downloadPage = "https://electrum.org/#download"; 158 + changelog = "https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES"; 157 159 license = licenses.mit; 158 160 platforms = platforms.all; 159 161 maintainers = with maintainers; [ joachifm np prusnak ];
+1 -1
pkgs/applications/misc/khal/default.nix
··· 20 20 pkgs.vdirsyncer 21 21 pytz 22 22 pyxdg 23 - requests_toolbelt 23 + requests-toolbelt 24 24 tzlocal 25 25 urwid 26 26 pkginfo
+2 -2
pkgs/applications/misc/pyditz/cerberus.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pytestrunner, pytest }: 1 + { lib, buildPythonPackage, fetchPypi, pytest-runner, pytest }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "Cerberus"; ··· 9 9 sha256 = "1pxzr8sfm2hc5s96m9k044i44nwkva70n0ypr6a35v73zn891cx5"; 10 10 }; 11 11 12 - checkInputs = [ pytestrunner pytest ]; 12 + checkInputs = [ pytest-runner pytest ]; 13 13 14 14 meta = with lib; { 15 15 homepage = "http://python-cerberus.org/";
+2 -2
pkgs/applications/misc/rofimoji/default.nix
··· 5 5 , waylandSupport ? true 6 6 , x11Support ? true 7 7 8 - , ConfigArgParse 8 + , configargparse 9 9 , rofi 10 10 , wl-clipboard 11 11 , wtype ··· 26 26 27 27 # `rofi` and the `waylandSupport` and `x11Support` dependencies 28 28 # contain binaries needed at runtime. 29 - propagatedBuildInputs = with lib; [ ConfigArgParse rofi ] 29 + propagatedBuildInputs = with lib; [ configargparse rofi ] 30 30 ++ optionals waylandSupport [ wl-clipboard wtype ] 31 31 ++ optionals x11Support [ xdotool xsel ]; 32 32
+3 -3
pkgs/applications/networking/dnscontrol/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnscontrol"; 5 - version = "3.10.1"; 5 + version = "3.11.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "StackExchange"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-fYQqH/J027XJPML/qKMpuu2Nxuvb0cyjOu2czLH8SoM="; 11 + sha256 = "sha256-ExpwJ4lMrYy1WztYo+RYa9jb8slIa3IJk/SUKA1fBKI="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-225TR9jTZSGEJZz3csl/pR/v2unUK67l08x5ESQTJzA="; 14 + vendorSha256 = "sha256-IXA4YNdWR6DWIH4ceif2XcAdwnMr2kCuG3ozagtzsgo="; 15 15 16 16 subPackages = [ "." ]; 17 17
+1 -1
pkgs/applications/networking/dyndns/dyndnsc/default.nix
··· 13 13 substituteInPlace setup.py --replace "bottle==" "bottle>=" 14 14 ''; 15 15 16 - nativeBuildInputs = with python3Packages; [ pytestrunner ]; 16 + nativeBuildInputs = with python3Packages; [ pytest-runner ]; 17 17 propagatedBuildInputs = with python3Packages; [ 18 18 daemonocle 19 19 dnspython
+2 -2
pkgs/applications/networking/instant-messengers/matrixcli/default.nix
··· 1 1 { lib, fetchgit 2 2 , buildPythonApplication, buildPythonPackage 3 - , pygobject3, pytestrunner, requests, responses, pytest, python-olm 3 + , pygobject3, pytest-runner, requests, responses, pytest, python-olm 4 4 , canonicaljson, olm 5 5 }: 6 6 let ··· 20 20 21 21 propagatedBuildInputs = [ 22 22 requests responses olm python-olm canonicaljson 23 - pytestrunner pytest 23 + pytest-runner pytest 24 24 ]; 25 25 26 26 doCheck = false;
+1 -1
pkgs/applications/networking/instant-messengers/zulip-term/default.nix
··· 36 36 glibcLocales 37 37 ] ++ (with python3.pkgs; [ 38 38 pytestCheckHook 39 - pytestcov 39 + pytest-cov 40 40 pytest-mock 41 41 ]); 42 42
+2 -2
pkgs/applications/networking/sync/acd_cli/default.nix
··· 1 1 { lib, fetchFromGitHub, buildPythonApplication, fuse 2 - , appdirs, colorama, python-dateutil, requests, requests_toolbelt 2 + , appdirs, colorama, python-dateutil, requests, requests-toolbelt 3 3 , fusepy, sqlalchemy, setuptools }: 4 4 5 5 buildPythonApplication rec { ··· 16 16 }; 17 17 18 18 propagatedBuildInputs = [ appdirs colorama python-dateutil fusepy requests 19 - requests_toolbelt setuptools sqlalchemy ]; 19 + requests-toolbelt setuptools sqlalchemy ]; 20 20 21 21 makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${fuse}/lib/libfuse.so" ]; 22 22
+1 -1
pkgs/applications/office/paperless/default.nix
··· 148 148 pytest 149 149 pytest-django 150 150 pytest-env 151 - pytest_xdist 151 + pytest-xdist 152 152 ]; 153 153 154 154 pyocrWithUserTesseract = pyPkgs:
+2 -2
pkgs/applications/office/todoman/default.nix
··· 44 44 freezegun 45 45 hypothesis 46 46 pytest 47 - pytestrunner 48 - pytestcov 47 + pytest-runner 48 + pytest-cov 49 49 glibcLocales 50 50 ]; 51 51
+1
pkgs/applications/science/logic/coq/default.nix
··· 162 162 prefixKey = "-prefix "; 163 163 164 164 buildFlags = [ "revision" "coq" "coqide" "bin/votour" ]; 165 + enableParallelBuilding = true; 165 166 166 167 createFindlibDestdir = true; 167 168
+1 -1
pkgs/applications/science/misc/snakemake/default.nix
··· 6 6 7 7 propagatedBuildInputs = with python3Packages; [ 8 8 appdirs 9 - ConfigArgParse 9 + configargparse 10 10 connection-pool 11 11 datrie 12 12 docutils
+42
pkgs/applications/terminal-emulators/coreterminal/default.nix
··· 1 + { mkDerivation 2 + , lib 3 + , fetchFromGitLab 4 + , cmake 5 + , ninja 6 + , qtbase 7 + , qtserialport 8 + , qtermwidget 9 + , libcprime 10 + }: 11 + 12 + mkDerivation rec { 13 + pname = "coreterminal"; 14 + version = "4.2.0"; 15 + 16 + src = fetchFromGitLab { 17 + owner = "cubocore/coreapps"; 18 + repo = pname; 19 + rev = "v${version}"; 20 + sha256 = "sha256-YXs6VTem3AaK4n1DYwKP/jqNuf09Srn2THHyJJnArlc="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + cmake 25 + ninja 26 + ]; 27 + 28 + buildInputs = [ 29 + qtbase 30 + qtserialport 31 + qtermwidget 32 + libcprime 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "A terminal emulator from the C Suite"; 37 + homepage = "https://gitlab.com/cubocore/coreapps/coreterminal"; 38 + license = licenses.gpl3Plus; 39 + maintainers = with maintainers; [ dan4ik605743 ]; 40 + platforms = platforms.linux; 41 + }; 42 + }
+1 -1
pkgs/applications/terminal-emulators/terminator/default.nix
··· 27 27 intltool 28 28 gobject-introspection 29 29 wrapGAppsHook 30 - python3.pkgs.pytestrunner 30 + python3.pkgs.pytest-runner 31 31 ]; 32 32 33 33 buildInputs = [
+1 -1
pkgs/applications/version-management/nbstripout/default.nix
··· 9 9 # application, it would mess up the Python environment. Thus, don't add it 10 10 # here, instead add it to PATH when running unit tests 11 11 checkInputs = [ pytest pytest-flake8 git ]; 12 - nativeBuildInputs = [ pytestrunner ]; 12 + nativeBuildInputs = [ pytest-runner ]; 13 13 propagatedBuildInputs = [ ipython nbformat ]; 14 14 15 15 src = fetchPypi {
+5 -2
pkgs/applications/video/kodi-packages/certifi/default.nix
··· 9 9 sha256 = "1z49b8va7wdyr714c8ixb2sldi0igffcjj3xpbmga58ph0z985vy"; 10 10 }; 11 11 12 - passthru.updateScript = addonUpdateScript { 13 - attrPath = "kodi.packages.certifi"; 12 + passthru = { 13 + pythonPath = "lib"; 14 + updateScript = addonUpdateScript { 15 + attrPath = "kodi.packages.certifi"; 16 + }; 14 17 }; 15 18 16 19 meta = with lib; {
+5 -2
pkgs/applications/video/kodi-packages/chardet/default.nix
··· 9 9 sha256 = "1jsd165mb1b8jdan2jbjd3y3xa0xam2cxcccmwazkybpa0r6a7dj"; 10 10 }; 11 11 12 - passthru.updateScript = addonUpdateScript { 13 - attrPath = "kodi.packages.chardet"; 12 + passthru = { 13 + pythonPath = "lib"; 14 + updateScript = addonUpdateScript { 15 + attrPath = "kodi.packages.chardet"; 16 + }; 14 17 }; 15 18 16 19 meta = with lib; {
+5 -2
pkgs/applications/video/kodi-packages/dateutil/default.nix
··· 14 14 six 15 15 ]; 16 16 17 - passthru.updateScript = addonUpdateScript { 18 - attrPath = "kodi.packages.dateutil"; 17 + passthru = { 18 + pythonPath = "lib"; 19 + updateScript = addonUpdateScript { 20 + attrPath = "kodi.packages.dateutil"; 21 + }; 19 22 }; 20 23 21 24 meta = with lib; {
+5 -2
pkgs/applications/video/kodi-packages/idna/default.nix
··· 9 9 sha256 = "0pm86m8kh2p0brps3xzxcmmabvb4izkglzkj8dsn33br3vlc7cm7"; 10 10 }; 11 11 12 - passthru.updateScript = addonUpdateScript { 13 - attrPath = "kodi.packages.idna"; 12 + passthru = { 13 + pythonPath = "lib"; 14 + updateScript = addonUpdateScript { 15 + attrPath = "kodi.packages.idna"; 16 + }; 14 17 }; 15 18 16 19 meta = with lib; {
+5 -2
pkgs/applications/video/kodi-packages/inputstreamhelper/default.nix
··· 9 9 sha256 = "0y4xn3ygwv1kb7gya7iwdga0g9sa89snpnram0wwqzqn8wn2lyb4"; 10 10 }; 11 11 12 - passthru.updateScript = addonUpdateScript { 13 - attrPath = "kodi.packages.inputstreamhelper"; 12 + passthru = { 13 + pythonPath = "lib"; 14 + updateScript = addonUpdateScript { 15 + attrPath = "kodi.packages.inputstreamhelper"; 16 + }; 14 17 }; 15 18 16 19 meta = with lib; {
+5 -2
pkgs/applications/video/kodi-packages/kodi-six/default.nix
··· 10 10 sha256 = "14m232p9hx925pbk8knsg994m1nbpa5278zmcrnfblh4z84gjv4x"; 11 11 }; 12 12 13 - passthru.updateScript = addonUpdateScript { 14 - attrPath = "kodi.packages.kodi-six"; 13 + passthru = { 14 + pythonPath = "libs"; 15 + updateScript = addonUpdateScript { 16 + attrPath = "kodi.packages.kodi-six"; 17 + }; 15 18 }; 16 19 17 20 meta = with lib; {
+5 -2
pkgs/applications/video/kodi-packages/myconnpy/default.nix
··· 9 9 sha256 = "1cx3qdzw9lkkmbyvyrmc2i193is20fihn2sfl7kmv43f708vam0k"; 10 10 }; 11 11 12 - passthru.updateScript = addonUpdateScript { 13 - attrPath = "kodi.packages.myconnpy"; 12 + passthru = { 13 + pythonPath = "lib"; 14 + updateScript = addonUpdateScript { 15 + attrPath = "kodi.packages.myconnpy"; 16 + }; 14 17 }; 15 18 16 19 meta = with lib; {
+2
pkgs/applications/video/kodi-packages/pdfreader/default.nix
··· 11 11 sha256 = "0nkqhlm1gyagq6xpdgqvd5qxyr2ngpml9smdmzfabc8b972mwjml"; 12 12 }; 13 13 14 + passthru.pythonPath = "lib/api"; 15 + 14 16 meta = with lib; { 15 17 homepage = "https://forum.kodi.tv/showthread.php?tid=187421"; 16 18 description = "A comic book reader";
+5 -2
pkgs/applications/video/kodi-packages/requests/default.nix
··· 16 16 urllib3 17 17 ]; 18 18 19 - passthru.updateScript = addonUpdateScript { 20 - attrPath = "kodi.packages.requests"; 19 + passthru = { 20 + pythonPath = "lib"; 21 + updateScript = addonUpdateScript { 22 + attrPath = "kodi.packages.requests"; 23 + }; 21 24 }; 22 25 23 26 meta = with lib; {
+5 -2
pkgs/applications/video/kodi-packages/signals/default.nix
··· 9 9 sha256 = "1qcjbakch8hvx02wc01zv014nmzgn6ahc4n2bj5mzr114ppd3hjs"; 10 10 }; 11 11 12 - passthru.updateScript = addonUpdateScript { 13 - attrPath = "kodi.packages.signals"; 12 + passthru= { 13 + pythonPath = "lib"; 14 + updateScript = addonUpdateScript { 15 + attrPath = "kodi.packages.signals"; 16 + }; 14 17 }; 15 18 16 19 meta = with lib; {
+5 -2
pkgs/applications/video/kodi-packages/urllib3/default.nix
··· 9 9 sha256 = "1d2k6gbsnhdadcl1xc7igz4m71z2fcnpln5ppfjv455cmkk110vf"; 10 10 }; 11 11 12 - passthru.updateScript = addonUpdateScript { 13 - attrPath = "kodi.packages.urllib3"; 12 + passthru = { 13 + pythonPath = "lib"; 14 + updateScript = addonUpdateScript { 15 + attrPath = "kodi.packages.urllib3"; 16 + }; 14 17 }; 15 18 16 19 meta = with lib; {
+5 -2
pkgs/applications/video/kodi-packages/websocket/default.nix
··· 14 14 six 15 15 ]; 16 16 17 - passthru.updateScript = addonUpdateScript { 18 - attrPath = "kodi.packages.websocket"; 17 + passthru = { 18 + pythonPath = "lib"; 19 + updateScript = addonUpdateScript { 20 + attrPath = "kodi.packages.websocket"; 21 + }; 19 22 }; 20 23 21 24 meta = with lib; {
+5 -2
pkgs/applications/video/kodi-packages/youtube/default.nix
··· 16 16 inputstreamhelper 17 17 ]; 18 18 19 - passthru.updateScript = addonUpdateScript { 20 - attrPath = "kodi.packages.youtube"; 19 + passthru = { 20 + pythonPath = "resources/lib"; 21 + updateScript = addonUpdateScript { 22 + attrPath = "kodi.packages.youtube"; 23 + }; 21 24 }; 22 25 23 26 meta = with lib; {
+14 -3
pkgs/applications/video/kodi/wrapper.nix
··· 1 - { lib, makeWrapper, buildEnv, kodi, addons }: 1 + { lib, makeWrapper, buildEnv, kodi, addons, callPackage }: 2 2 3 3 let 4 + kodiPackages = callPackage ../../../top-level/kodi-packages.nix { inherit kodi; }; 5 + 4 6 # linux distros are supposed to provide pillow and pycryptodome 5 - requiredPythonPackages = with kodi.pythonPackages; [ pillow pycryptodome] ++ addons; 7 + requiredPythonPath = with kodi.pythonPackages; makePythonPath ([ pillow pycryptodome ]); 8 + 9 + # each kodi addon can potentially export a python module which should be included in PYTHONPATH 10 + # see any addon which supplies `passthru.pythonPath` and the corresponding entry in the addons `addon.xml` 11 + # eg. `<extension point="xbmc.python.module" library="lib" />` -> pythonPath = "lib"; 12 + additionalPythonPath = 13 + let 14 + addonsWithPythonPath = lib.filter (addon: addon ? pythonPath) addons; 15 + in 16 + lib.concatMapStringsSep ":" (addon: "${addon}${kodiPackages.addonDir}/${addon.namespace}/${addon.pythonPath}") addonsWithPythonPath; 6 17 in 7 18 8 19 buildEnv { ··· 18 29 for exe in kodi{,-standalone} 19 30 do 20 31 makeWrapper ${kodi}/bin/$exe $out/bin/$exe \ 21 - --prefix PYTHONPATH : ${kodi.pythonPackages.makePythonPath requiredPythonPackages} \ 32 + --prefix PYTHONPATH : ${requiredPythonPath}:${additionalPythonPath} \ 22 33 --prefix KODI_HOME : $out/share/kodi \ 23 34 --prefix LD_LIBRARY_PATH ":" "${lib.makeLibraryPath 24 35 (lib.concatMap
-47
pkgs/applications/virtualization/virtinst/default.nix
··· 1 - { lib, stdenv, fetchurl, python2Packages, intltool, libxml2Python }: 2 - 3 - with lib; 4 - 5 - let version = "0.600.4"; in 6 - 7 - stdenv.mkDerivation rec { 8 - pname = "virtinst"; 9 - inherit version; 10 - 11 - src = fetchurl { 12 - url = "http://virt-manager.org/download/sources/virtinst/virtinst-${version}.tar.gz"; 13 - sha256 = "175laiy49dni8hzi0cn14bbsdsigvgr9h6d9z2bcvbpa29spldvf"; 14 - }; 15 - 16 - pythonPath = with python2Packages; 17 - [ setuptools eventlet greenlet gflags netaddr carrot routes 18 - PasteDeploy m2crypto ipy twisted 19 - distutils_extra simplejson cheetah lockfile httplib2 20 - # !!! should libvirt be a build-time dependency? Note that 21 - # libxml2Python is a dependency of libvirt.py. 22 - libvirt libxml2Python urlgrabber 23 - ]; 24 - 25 - buildInputs = 26 - [ python2Packages.python 27 - python2Packages.wrapPython 28 - python2Packages.mox 29 - intltool 30 - ] ++ pythonPath; 31 - 32 - buildPhase = "python setup.py build"; 33 - 34 - installPhase = 35 - '' 36 - python setup.py install --prefix="$out"; 37 - wrapPythonPrograms 38 - ''; 39 - 40 - meta = { 41 - homepage = "http://virt-manager.org"; 42 - license = lib.licenses.gpl2Plus; 43 - maintainers = with lib.maintainers; [qknight]; 44 - description = "Command line tool which provides an easy way to provision operating systems into virtual machines"; 45 - platforms = with lib.platforms; linux; 46 - }; 47 - }
+3 -3
pkgs/development/compilers/vyper/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, writeText, asttokens 2 - , pycryptodome, pytest_xdist, pytestcov, recommonmark, semantic-version, sphinx 3 - , sphinx_rtd_theme, pytestrunner }: 2 + , pycryptodome, pytest-xdist, pytest-cov, recommonmark, semantic-version, sphinx 3 + , sphinx_rtd_theme, pytest-runner }: 4 4 5 5 let 6 6 sample-contract = writeText "example.vy" '' ··· 21 21 sha256 = "e763561a161c35c03b92a0c176096dd9b4c78ab003c2f08324d443f459b3de84"; 22 22 }; 23 23 24 - nativeBuildInputs = [ pytestrunner ]; 24 + nativeBuildInputs = [ pytest-runner ]; 25 25 26 26 postPatch = '' 27 27 substituteInPlace setup.py \
+1 -1
pkgs/development/libraries/galario/default.nix
··· 40 40 pythonPackages.pytest 41 41 ]; 42 42 43 - checkInputs = lib.optional enablePython [ pythonPackages.scipy pythonPackages.pytestcov ]; 43 + checkInputs = lib.optional enablePython [ pythonPackages.scipy pythonPackages.pytest-cov ]; 44 44 45 45 preConfigure = '' 46 46 mkdir -p build/external/src
+40
pkgs/development/libraries/libcprime/default.nix
··· 1 + { mkDerivation 2 + , lib 3 + , fetchFromGitLab 4 + , libnotify 5 + , cmake 6 + , ninja 7 + , qtbase 8 + , qtconnectivity 9 + }: 10 + 11 + mkDerivation rec { 12 + pname = "libcprime"; 13 + version = "4.2.2"; 14 + 15 + src = fetchFromGitLab { 16 + owner = "cubocore"; 17 + repo = pname; 18 + rev = "v${version}"; 19 + sha256 = "sha256-RywvFATA/+fDP/TR5QRWaJlDgy3EID//iVmrJcj3GXI="; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + cmake 24 + ninja 25 + ]; 26 + 27 + buildInputs = [ 28 + qtbase 29 + qtconnectivity 30 + libnotify 31 + ]; 32 + 33 + meta = with lib; { 34 + description = "A library for bookmarking, saving recent activites, managing settings of C-Suite"; 35 + homepage = "https://gitlab.com/cubocore/coreapps/libcprime"; 36 + license = licenses.gpl3Plus; 37 + maintainers = with maintainers; [ dan4ik605743 ]; 38 + platforms = platforms.linux; 39 + }; 40 + }
+6 -6
pkgs/development/libraries/tidyp/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 1 + { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tidyp"; 5 5 version = "1.04"; 6 6 7 - src = fetchFromGitHub { 8 - owner = "petdance"; 9 - repo = "tidyp"; 10 - rev = version; 11 - sha256 = "0jslskziwzk4hb6i640fvpnbv2zxrvim6pdx2gwx5wyc64aviskc"; 7 + src = fetchurl { 8 + # downloads from a legacy GitHub download page from ~11 years ago 9 + # project does not work with autoconf anymore and the configure script cannot be generated from the source download 10 + url = "https://github.com/downloads/petdance/tidyp/${pname}-${version}.tar.gz"; 11 + sha256 = "0f5ky0ih4vap9c6j312jn73vn8m2bj69pl2yd3a5nmv35k9zmc10"; 12 12 }; 13 13 14 14 hardeningDisable = [ "format" ];
+1 -1
pkgs/development/misc/resholve/resholve.nix
··· 43 43 44 44 nativeBuildInputs = [ installShellFiles ]; 45 45 46 - propagatedBuildInputs = [ deps.oildev python27Packages.ConfigArgParse ]; 46 + propagatedBuildInputs = [ deps.oildev python27Packages.configargparse ]; 47 47 48 48 patchPhase = '' 49 49 for file in resholve; do
+1
pkgs/development/node-packages/node-packages.json
··· 178 178 , "np" 179 179 , "npm" 180 180 , "npm-check-updates" 181 + , "npm-merge-driver" 181 182 , {"npm2nix": "git://github.com/NixOS/npm2nix.git#5.12.0"} 182 183 , "ocaml-language-server" 183 184 , "parcel-bundler"
+581 -482
pkgs/development/node-packages/node-packages.nix
··· 310 310 sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20"; 311 311 }; 312 312 }; 313 - "@babel/cli-7.14.5" = { 313 + "@babel/cli-7.14.8" = { 314 314 name = "_at_babel_slash_cli"; 315 315 packageName = "@babel/cli"; 316 - version = "7.14.5"; 316 + version = "7.14.8"; 317 317 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.14.5.tgz"; 319 - sha512 = "poegjhRvXHWO0EAsnYajwYZuqcz7gyfxwfaecUESxDujrqOivf3zrjFbub8IJkrqEaz3fvJWh001EzxBub54fg=="; 318 + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.14.8.tgz"; 319 + sha512 = "lcy6Lymft9Rpfqmrqdd4oTDdUx9ZwaAhAfywVrHG4771Pa6PPT0danJ1kDHBXYqh4HHSmIdA+nlmfxfxSDPtBg=="; 320 320 }; 321 321 }; 322 322 "@babel/code-frame-7.10.4" = { ··· 364 364 sha512 = "O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w=="; 365 365 }; 366 366 }; 367 - "@babel/core-7.14.6" = { 367 + "@babel/core-7.14.8" = { 368 368 name = "_at_babel_slash_core"; 369 369 packageName = "@babel/core"; 370 - version = "7.14.6"; 370 + version = "7.14.8"; 371 371 src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/core/-/core-7.14.6.tgz"; 373 - sha512 = "gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA=="; 372 + url = "https://registry.npmjs.org/@babel/core/-/core-7.14.8.tgz"; 373 + sha512 = "/AtaeEhT6ErpDhInbXmjHcUQXH0L0TEgscfcxk1qbOvLuKCa5aZT0SOOtDKFY96/CLROwbLSKyFor6idgNaU4Q=="; 374 374 }; 375 375 }; 376 376 "@babel/core-7.9.0" = { ··· 382 382 sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w=="; 383 383 }; 384 384 }; 385 - "@babel/generator-7.14.5" = { 385 + "@babel/generator-7.14.8" = { 386 386 name = "_at_babel_slash_generator"; 387 387 packageName = "@babel/generator"; 388 - version = "7.14.5"; 388 + version = "7.14.8"; 389 389 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz"; 391 - sha512 = "y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA=="; 390 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.14.8.tgz"; 391 + sha512 = "cYDUpvIzhBVnMzRoY1fkSEhK/HmwEVwlyULYgn/tMQYd6Obag3ylCjONle3gdErfXBW61SVTlR9QR7uWlgeIkg=="; 392 392 }; 393 393 }; 394 394 "@babel/helper-annotate-as-pure-7.14.5" = { ··· 418 418 sha512 = "v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw=="; 419 419 }; 420 420 }; 421 - "@babel/helper-create-class-features-plugin-7.14.6" = { 421 + "@babel/helper-create-class-features-plugin-7.14.8" = { 422 422 name = "_at_babel_slash_helper-create-class-features-plugin"; 423 423 packageName = "@babel/helper-create-class-features-plugin"; 424 - version = "7.14.6"; 424 + version = "7.14.8"; 425 425 src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz"; 427 - sha512 = "Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg=="; 426 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.8.tgz"; 427 + sha512 = "bpYvH8zJBWzeqi1o+co8qOrw+EXzQ/0c74gVmY205AWXy9nifHrOg77y+1zwxX5lXE7Icq4sPlSQ4O2kWBrteQ=="; 428 428 }; 429 429 }; 430 430 "@babel/helper-create-regexp-features-plugin-7.14.5" = { ··· 499 499 sha512 = "SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ=="; 500 500 }; 501 501 }; 502 - "@babel/helper-module-transforms-7.14.5" = { 502 + "@babel/helper-module-transforms-7.14.8" = { 503 503 name = "_at_babel_slash_helper-module-transforms"; 504 504 packageName = "@babel/helper-module-transforms"; 505 - version = "7.14.5"; 505 + version = "7.14.8"; 506 506 src = fetchurl { 507 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz"; 508 - sha512 = "iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA=="; 507 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.8.tgz"; 508 + sha512 = "RyE+NFOjXn5A9YU1dkpeBaduagTlZ0+fccnIcAGbv1KGUlReBj7utF7oEth8IdIBQPcux0DDgW5MFBH2xu9KcA=="; 509 509 }; 510 510 }; 511 511 "@babel/helper-optimise-call-expression-7.14.5" = { ··· 553 553 sha512 = "3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow=="; 554 554 }; 555 555 }; 556 - "@babel/helper-simple-access-7.14.5" = { 556 + "@babel/helper-simple-access-7.14.8" = { 557 557 name = "_at_babel_slash_helper-simple-access"; 558 558 packageName = "@babel/helper-simple-access"; 559 - version = "7.14.5"; 559 + version = "7.14.8"; 560 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz"; 562 - sha512 = "nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw=="; 561 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz"; 562 + sha512 = "TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg=="; 563 563 }; 564 564 }; 565 565 "@babel/helper-skip-transparent-expression-wrappers-7.14.5" = { ··· 580 580 sha512 = "hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA=="; 581 581 }; 582 582 }; 583 - "@babel/helper-validator-identifier-7.14.5" = { 583 + "@babel/helper-validator-identifier-7.14.8" = { 584 584 name = "_at_babel_slash_helper-validator-identifier"; 585 585 packageName = "@babel/helper-validator-identifier"; 586 - version = "7.14.5"; 586 + version = "7.14.8"; 587 587 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz"; 589 - sha512 = "5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg=="; 588 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz"; 589 + sha512 = "ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow=="; 590 590 }; 591 591 }; 592 592 "@babel/helper-validator-option-7.14.5" = { ··· 607 607 sha512 = "YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ=="; 608 608 }; 609 609 }; 610 - "@babel/helpers-7.14.6" = { 610 + "@babel/helpers-7.14.8" = { 611 611 name = "_at_babel_slash_helpers"; 612 612 packageName = "@babel/helpers"; 613 - version = "7.14.6"; 613 + version = "7.14.8"; 614 614 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.6.tgz"; 616 - sha512 = "yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA=="; 615 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.8.tgz"; 616 + sha512 = "ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw=="; 617 617 }; 618 618 }; 619 619 "@babel/highlight-7.14.5" = { ··· 634 634 sha512 = "OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw=="; 635 635 }; 636 636 }; 637 - "@babel/parser-7.14.7" = { 637 + "@babel/parser-7.14.8" = { 638 638 name = "_at_babel_slash_parser"; 639 639 packageName = "@babel/parser"; 640 - version = "7.14.7"; 640 + version = "7.14.8"; 641 641 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz"; 643 - sha512 = "X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA=="; 642 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.14.8.tgz"; 643 + sha512 = "syoCQFOoo/fzkWDeM0dLEZi5xqurb5vuyzwIMNZRNun+N/9A4cUZeQaE7dTrB8jGaKuJRBtEOajtnmw0I5hvvA=="; 644 644 }; 645 645 }; 646 646 "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" = { ··· 1399 1399 sha512 = "9PMijx8zFbCwTHrd2P4PJR5nWGH3zWebx2OcpTjqQrHhCiL2ssSR2Sc9ko2BsI2VmVBfoaQmPrlMTCui4LmXQg=="; 1400 1400 }; 1401 1401 }; 1402 - "@babel/preset-env-7.14.7" = { 1402 + "@babel/preset-env-7.14.8" = { 1403 1403 name = "_at_babel_slash_preset-env"; 1404 1404 packageName = "@babel/preset-env"; 1405 - version = "7.14.7"; 1405 + version = "7.14.8"; 1406 1406 src = fetchurl { 1407 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.7.tgz"; 1408 - sha512 = "itOGqCKLsSUl0Y+1nSfhbuuOlTs0MJk2Iv7iSH+XT/mR8U1zRLO7NjWlYXB47yhK4J/7j+HYty/EhFZDYKa/VA=="; 1407 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.8.tgz"; 1408 + sha512 = "a9aOppDU93oArQ51H+B8M1vH+tayZbuBqzjOhntGetZVa+4tTu5jp+XTwqHGG2lxslqomPYVSjIxQkFwXzgnxg=="; 1409 1409 }; 1410 1410 }; 1411 1411 "@babel/preset-flow-7.14.5" = { ··· 1489 1489 sha512 = "aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA=="; 1490 1490 }; 1491 1491 }; 1492 - "@babel/runtime-7.14.6" = { 1492 + "@babel/runtime-7.14.8" = { 1493 1493 name = "_at_babel_slash_runtime"; 1494 1494 packageName = "@babel/runtime"; 1495 - version = "7.14.6"; 1495 + version = "7.14.8"; 1496 1496 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz"; 1498 - sha512 = "/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg=="; 1497 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz"; 1498 + sha512 = "twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg=="; 1499 1499 }; 1500 1500 }; 1501 1501 "@babel/runtime-7.9.0" = { ··· 1507 1507 sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA=="; 1508 1508 }; 1509 1509 }; 1510 - "@babel/runtime-corejs3-7.14.7" = { 1510 + "@babel/runtime-corejs3-7.14.8" = { 1511 1511 name = "_at_babel_slash_runtime-corejs3"; 1512 1512 packageName = "@babel/runtime-corejs3"; 1513 - version = "7.14.7"; 1513 + version = "7.14.8"; 1514 1514 src = fetchurl { 1515 - url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.14.7.tgz"; 1516 - sha512 = "Wvzcw4mBYbTagyBVZpAJWI06auSIj033T/yNE0Zn1xcup83MieCddZA7ls3kme17L4NOGBrQ09Q+nKB41RLWBA=="; 1515 + url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.14.8.tgz"; 1516 + sha512 = "4dMD5QRBkumn45oweR0SxoNtt15oz3BUBAQ8cIx7HJqZTtE8zjpM0My8aHJHVnyf4XfRg6DNzaE1080WLBiC1w=="; 1517 1517 }; 1518 1518 }; 1519 - "@babel/standalone-7.14.7" = { 1519 + "@babel/standalone-7.14.8" = { 1520 1520 name = "_at_babel_slash_standalone"; 1521 1521 packageName = "@babel/standalone"; 1522 - version = "7.14.7"; 1522 + version = "7.14.8"; 1523 1523 src = fetchurl { 1524 - url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.14.7.tgz"; 1525 - sha512 = "7RlfMPR4604SbYpj5zvs2ZK587hVhixgU9Pd9Vs8lB8KYtT3U0apXSf0vZXhy8XRh549eUmJOHXhWKTO3ObzOQ=="; 1524 + url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.14.8.tgz"; 1525 + sha512 = "5Aa1Bhis4oZD23iLJE5CDYHEs1zSC3ejppHE5aim0OWjGCWTa9Oq1PwopK4u1++ao6B6POW/PqNZjOCZNTSx0Q=="; 1526 1526 }; 1527 1527 }; 1528 1528 "@babel/template-7.14.5" = { ··· 1534 1534 sha512 = "6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g=="; 1535 1535 }; 1536 1536 }; 1537 - "@babel/traverse-7.14.7" = { 1537 + "@babel/traverse-7.14.8" = { 1538 1538 name = "_at_babel_slash_traverse"; 1539 1539 packageName = "@babel/traverse"; 1540 - version = "7.14.7"; 1540 + version = "7.14.8"; 1541 1541 src = fetchurl { 1542 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.7.tgz"; 1543 - sha512 = "9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ=="; 1542 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.8.tgz"; 1543 + sha512 = "kexHhzCljJcFNn1KYAQ6A5wxMRzq9ebYpEDV4+WdNyr3i7O44tanbDOR/xjiG2F3sllan+LgwK+7OMk0EmydHg=="; 1544 1544 }; 1545 1545 }; 1546 1546 "@babel/types-7.13.12" = { ··· 1552 1552 sha512 = "K4nY2xFN4QMvQwkQ+zmBDp6ANMbVNw6BbxWmYA4qNjhR9W+Lj/8ky5MEY2Me5r+B2c6/v6F53oMndG+f9s3IiA=="; 1553 1553 }; 1554 1554 }; 1555 - "@babel/types-7.14.5" = { 1555 + "@babel/types-7.14.8" = { 1556 1556 name = "_at_babel_slash_types"; 1557 1557 packageName = "@babel/types"; 1558 - version = "7.14.5"; 1558 + version = "7.14.8"; 1559 1559 src = fetchurl { 1560 - url = "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz"; 1561 - sha512 = "M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg=="; 1560 + url = "https://registry.npmjs.org/@babel/types/-/types-7.14.8.tgz"; 1561 + sha512 = "iob4soQa7dZw8nodR/KlOQkPh9S4I8RwCxwRIFuiMRYjOzH/KJzdUfDgz6cGi5dDaclXF4P2PAhCdrBJNIg68Q=="; 1562 1562 }; 1563 1563 }; 1564 1564 "@braintree/sanitize-url-3.1.0" = { ··· 2497 2497 sha512 = "d4VSA86eL/AFTe5xtyZX+ePUjE8dIFu2T8zmdeNBSa5/kNgXPCx/o/wbFNHAGLJdGnk1vddRuMESD9HbOC8irw=="; 2498 2498 }; 2499 2499 }; 2500 - "@google-cloud/pubsub-2.16.0" = { 2500 + "@google-cloud/pubsub-2.16.1" = { 2501 2501 name = "_at_google-cloud_slash_pubsub"; 2502 2502 packageName = "@google-cloud/pubsub"; 2503 - version = "2.16.0"; 2503 + version = "2.16.1"; 2504 2504 src = fetchurl { 2505 - url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.16.0.tgz"; 2506 - sha512 = "1cZveyznm9qHXzRqlbS3GLeDiaFp8JVN6Urkrt5hgJGWP/IY9kxuJ0ZCnCeZE4x9O/+a5hWgKaQtBKseJYw//Q=="; 2505 + url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.16.1.tgz"; 2506 + sha512 = "+uO7r9uRfD/x0BzBI67clbIu0VIdqYLZ5NINuGEsMiAXIGWQWmceuLMixMEb/JOxeaqKygH1mL2rshkDisUmGg=="; 2507 2507 }; 2508 2508 }; 2509 2509 "@graphql-cli/common-4.1.0" = { ··· 4171 4171 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 4172 4172 }; 4173 4173 }; 4174 - "@netlify/build-15.11.5" = { 4174 + "@netlify/build-16.0.1" = { 4175 4175 name = "_at_netlify_slash_build"; 4176 4176 packageName = "@netlify/build"; 4177 - version = "15.11.5"; 4177 + version = "16.0.1"; 4178 4178 src = fetchurl { 4179 - url = "https://registry.npmjs.org/@netlify/build/-/build-15.11.5.tgz"; 4180 - sha512 = "qsL1bvVAa5ZPIkYxo1Z4vdOcq8sDxQhyKjDqPAEasLqfX3ZTABctze3WdD6WmpyR9wzQEJLpCy1s3ncTDeiU0w=="; 4179 + url = "https://registry.npmjs.org/@netlify/build/-/build-16.0.1.tgz"; 4180 + sha512 = "DRuFNlK309541EbnY4xHBXrYTgn4K59IpzbE9+ACCuOOav0lJHrVXTeZCzl2dAg/dvEp0/9YwDncmyjr4uKqWQ=="; 4181 4181 }; 4182 4182 }; 4183 4183 "@netlify/cache-utils-1.0.7" = { ··· 4189 4189 sha512 = "yrdrnQkzg/qMovoFYwQ24UVt/OyHtP+t0KpQFd7eBl6gnuuGGgxFocaFFv6eKpMVwzHTsOwx/y9B/FcC3/6cfA=="; 4190 4190 }; 4191 4191 }; 4192 - "@netlify/config-12.6.0" = { 4192 + "@netlify/config-13.0.0" = { 4193 4193 name = "_at_netlify_slash_config"; 4194 4194 packageName = "@netlify/config"; 4195 - version = "12.6.0"; 4195 + version = "13.0.0"; 4196 4196 src = fetchurl { 4197 - url = "https://registry.npmjs.org/@netlify/config/-/config-12.6.0.tgz"; 4198 - sha512 = "L+ZmoGsO2Gql+T6+147G7ZctcXgViuh8Q1ReADICM4xdaYVmipRFC+ICU4iJ8I9UQnc0M7qM0ZHzKuhTdPJfiA=="; 4197 + url = "https://registry.npmjs.org/@netlify/config/-/config-13.0.0.tgz"; 4198 + sha512 = "d7NNG3lbvZN/w9eCRdlFKBY21Vpjxlwis08v5NJjkZpNTuuAuemNFrhZv2y5zmy33TM+zTrkaoEAk6vJ96R5cQ=="; 4199 4199 }; 4200 4200 }; 4201 4201 "@netlify/esbuild-0.13.6" = { ··· 4261 4261 sha512 = "Z2RNrNhO7fsNFmpUQ+eNawgtfHwbGH/4Hji2g+GCRYL7W60kgK5rsWxveky1Nrye45I2OQn/4ZGapKqB1IqTaw=="; 4262 4262 }; 4263 4263 }; 4264 - "@netlify/routing-local-proxy-0.30.2" = { 4264 + "@netlify/routing-local-proxy-0.31.0" = { 4265 4265 name = "_at_netlify_slash_routing-local-proxy"; 4266 4266 packageName = "@netlify/routing-local-proxy"; 4267 - version = "0.30.2"; 4267 + version = "0.31.0"; 4268 4268 src = fetchurl { 4269 - url = "https://registry.npmjs.org/@netlify/routing-local-proxy/-/routing-local-proxy-0.30.2.tgz"; 4270 - sha512 = "rQnv383/vFF1x3iKnY/2Q2i7Z7RhugfoVfAIbEJ2bIaWFMQ2YcGMVpwj1w8rK+4MGH5uwvlNNlfE0gGYQOq+4Q=="; 4269 + url = "https://registry.npmjs.org/@netlify/routing-local-proxy/-/routing-local-proxy-0.31.0.tgz"; 4270 + sha512 = "SSlWic9za/0QtfCP7GllJcOV98BWlx2goOF9bLLhmsHGiPfrhlhZfemqdMtKM4BIs+G70wzUqaIYeyjtxVh37A=="; 4271 4271 }; 4272 4272 }; 4273 4273 "@netlify/run-utils-1.0.7" = { ··· 4639 4639 sha512 = "SWTdXsVheRmlotWNjKzPOb6Js6tjSqA2a8z9+glDJng0Aqjzti8MEWOtuT8ZSu6wHnci7LZNuarE87+WJBG4vg=="; 4640 4640 }; 4641 4641 }; 4642 - "@octokit/openapi-types-8.3.0" = { 4642 + "@octokit/openapi-types-9.0.0" = { 4643 4643 name = "_at_octokit_slash_openapi-types"; 4644 4644 packageName = "@octokit/openapi-types"; 4645 - version = "8.3.0"; 4645 + version = "9.0.0"; 4646 4646 src = fetchurl { 4647 - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-8.3.0.tgz"; 4648 - sha512 = "ZFyQ30tNpoATI7o+Z9MWFUzUgWisB8yduhcky7S4UYsRijgIGSnwUKzPBDGzf/Xkx1DuvUtqzvmuFlDSqPJqmQ=="; 4647 + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-9.0.0.tgz"; 4648 + sha512 = "GSpv5VUFqarOXZl6uWPsDnjChkKCxnaMALmQhzvCWGiMxONQxX7ZwlomCMS+wB1KqxLPCA5n6gYt016oEMkHmQ=="; 4649 4649 }; 4650 4650 }; 4651 4651 "@octokit/plugin-enterprise-rest-6.0.1" = { ··· 4675 4675 sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA=="; 4676 4676 }; 4677 4677 }; 4678 - "@octokit/plugin-rest-endpoint-methods-5.4.1" = { 4678 + "@octokit/plugin-rest-endpoint-methods-5.4.2" = { 4679 4679 name = "_at_octokit_slash_plugin-rest-endpoint-methods"; 4680 4680 packageName = "@octokit/plugin-rest-endpoint-methods"; 4681 - version = "5.4.1"; 4681 + version = "5.4.2"; 4682 4682 src = fetchurl { 4683 - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.4.1.tgz"; 4684 - sha512 = "Nx0g7I5ayAYghsLJP4Q1Ch2W9jYYM0FlWWWZocUro8rNxVwuZXGfFd7Rcqi9XDWepSXjg1WByiNJnZza2hIOvQ=="; 4683 + url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.4.2.tgz"; 4684 + sha512 = "imNDDvUMy9YzECcP6zTcKNjwutSwqCYGMZjLPnBHF0kdb3V9URrHWmalD0ZvNEYjwbpm2zw8RPewj3ebCpMBRw=="; 4685 4685 }; 4686 4686 }; 4687 4687 "@octokit/request-5.6.0" = { ··· 4702 4702 sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg=="; 4703 4703 }; 4704 4704 }; 4705 - "@octokit/rest-18.6.7" = { 4705 + "@octokit/rest-18.6.8" = { 4706 4706 name = "_at_octokit_slash_rest"; 4707 4707 packageName = "@octokit/rest"; 4708 - version = "18.6.7"; 4708 + version = "18.6.8"; 4709 4709 src = fetchurl { 4710 - url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.6.7.tgz"; 4711 - sha512 = "Kn6WrI2ZvmAztdx+HEaf88RuJn+LK72S8g6OpciE4kbZddAN84fu4fiPGxcEu052WmqKVnA/cnQsbNlrYC6rqQ=="; 4710 + url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.6.8.tgz"; 4711 + sha512 = "n2aT0mJL9N/idCPmnBynCino1qNScfRHvr8OeskQdBNhUYAMc7cxoc8KLlv1DMWxlZUNhed+5kVdu7majVdVag=="; 4712 4712 }; 4713 4713 }; 4714 - "@octokit/types-6.19.0" = { 4714 + "@octokit/types-6.19.1" = { 4715 4715 name = "_at_octokit_slash_types"; 4716 4716 packageName = "@octokit/types"; 4717 - version = "6.19.0"; 4717 + version = "6.19.1"; 4718 4718 src = fetchurl { 4719 - url = "https://registry.npmjs.org/@octokit/types/-/types-6.19.0.tgz"; 4720 - sha512 = "9wdZFiJfonDyU6DjIgDHxAIn92vdSUBOwAXbO2F9rOFt6DJwuAkyGLu1CvdJPphCbPBoV9iSDMX7y4fu0v6AtA=="; 4719 + url = "https://registry.npmjs.org/@octokit/types/-/types-6.19.1.tgz"; 4720 + sha512 = "hMI2EokQzMG8ABWcnvcrabqQFuFHqUdN0HUOG4DPTaOtnf/jqhzhK1SHOGu5vDlI/x+hWJ60e28VxB7QhOP0CQ=="; 4721 4721 }; 4722 4722 }; 4723 4723 "@open-policy-agent/opa-wasm-1.2.0" = { ··· 5476 5476 sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang=="; 5477 5477 }; 5478 5478 }; 5479 - "@serverless/components-3.13.4" = { 5479 + "@serverless/components-3.14.0" = { 5480 5480 name = "_at_serverless_slash_components"; 5481 5481 packageName = "@serverless/components"; 5482 - version = "3.13.4"; 5482 + version = "3.14.0"; 5483 5483 src = fetchurl { 5484 - url = "https://registry.npmjs.org/@serverless/components/-/components-3.13.4.tgz"; 5485 - sha512 = "Qv0hDwj5dG2WaCnVvfzZ4LggMWPfONVtCUWIM7LbCGwVq+K3nnkdql1nJqrfCMkqc3rz2hjxck35ckOPxDiVRQ=="; 5484 + url = "https://registry.npmjs.org/@serverless/components/-/components-3.14.0.tgz"; 5485 + sha512 = "Ssuu+OcyWvisGIMZD4Lr9Uj20Ndgb9a8Z/Jw4VbhFS+grc89uK7vZR3pS9I4LTfTUKH4HUbMJXxDndNEFGgLAA=="; 5486 5486 }; 5487 5487 }; 5488 5488 "@serverless/core-1.1.2" = { ··· 5557 5557 sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog=="; 5558 5558 }; 5559 5559 }; 5560 - "@serverless/utils-5.4.0" = { 5560 + "@serverless/utils-5.5.0" = { 5561 5561 name = "_at_serverless_slash_utils"; 5562 5562 packageName = "@serverless/utils"; 5563 - version = "5.4.0"; 5563 + version = "5.5.0"; 5564 5564 src = fetchurl { 5565 - url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.4.0.tgz"; 5566 - sha512 = "abEYhQ8Bgh48w/8uzvv8hlfOXsbkvTns3vuMU4THpb0nhbhqL7Y4AWf6z4wJFxcMd0yffkgUQWwSzYHwGJp3kA=="; 5565 + url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.5.0.tgz"; 5566 + sha512 = "cn1eoSla6/hbytPgwh3tiUCeBjVBHt3nKgFwYtF0Aj3B1V+qaBMLOcXmXop+WHhWUil8rP4R9HJ4buR5BgLYWw=="; 5567 5567 }; 5568 5568 }; 5569 5569 "@serverless/utils-china-1.1.4" = { ··· 7213 7213 sha512 = "8h7k1YgQKxKXWckzFCMfsIwn0Y61UK6tlD6y2lOb3hTOIMlK3t9/QwHOhc81TwU+RMf0As5fj7NPjroERCnejQ=="; 7214 7214 }; 7215 7215 }; 7216 + "@types/node-16.4.0" = { 7217 + name = "_at_types_slash_node"; 7218 + packageName = "@types/node"; 7219 + version = "16.4.0"; 7220 + src = fetchurl { 7221 + url = "https://registry.npmjs.org/@types/node/-/node-16.4.0.tgz"; 7222 + sha512 = "HrJuE7Mlqcjj+00JqMWpZ3tY8w7EUd+S0U3L1+PQSWiXZbOgyQDvi+ogoUxaHApPJq5diKxYBQwA3iIlNcPqOg=="; 7223 + }; 7224 + }; 7216 7225 "@types/node-6.14.13" = { 7217 7226 name = "_at_types_slash_node"; 7218 7227 packageName = "@types/node"; ··· 11254 11263 sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg=="; 11255 11264 }; 11256 11265 }; 11257 - "aws-sdk-2.949.0" = { 11266 + "aws-sdk-2.950.0" = { 11258 11267 name = "aws-sdk"; 11259 11268 packageName = "aws-sdk"; 11260 - version = "2.949.0"; 11269 + version = "2.950.0"; 11261 11270 src = fetchurl { 11262 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.949.0.tgz"; 11263 - sha512 = "n9vqtsLPmSvJcvYvBLBbI1n4GZokwc/5zgHZD7VxdioLNXo1nHQ3VUi4MiW+3kIN40NUNf+Gc5vpc82yNYCvsw=="; 11271 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.950.0.tgz"; 11272 + sha512 = "iFC5fKLuFLEV27xeKmxDHDZzIDj4upm5+Ts3NpYYRbwPlOG0nE0gZzf9fRYkLkLgTr0TQq26CbKorgeo+6ailw=="; 11264 11273 }; 11265 11274 }; 11266 11275 "aws-sign2-0.6.0" = { ··· 14674 14683 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 14675 14684 }; 14676 14685 }; 14677 - "caniuse-lite-1.0.30001245" = { 14686 + "caniuse-lite-1.0.30001246" = { 14678 14687 name = "caniuse-lite"; 14679 14688 packageName = "caniuse-lite"; 14680 - version = "1.0.30001245"; 14689 + version = "1.0.30001246"; 14681 14690 src = fetchurl { 14682 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001245.tgz"; 14683 - sha512 = "768fM9j1PKXpOCKws6eTo3RHmvTUsG9UrpT4WoREFeZgJBTi4/X9g565azS/rVUGtqb8nt7FjLeF5u4kukERnA=="; 14691 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001246.tgz"; 14692 + sha512 = "Tc+ff0Co/nFNbLOrziBXmMVtpt9S2c2Y+Z9Nk9Khj09J+0zR9ejvIW5qkZAErCbOrVODCx/MN+GpB5FNBs5GFA=="; 14684 14693 }; 14685 14694 }; 14686 14695 "canvas-2.8.0" = { ··· 17365 17374 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 17366 17375 }; 17367 17376 }; 17368 - "constructs-3.3.98" = { 17377 + "constructs-3.3.99" = { 17369 17378 name = "constructs"; 17370 17379 packageName = "constructs"; 17371 - version = "3.3.98"; 17380 + version = "3.3.99"; 17372 17381 src = fetchurl { 17373 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.98.tgz"; 17374 - sha512 = "VvDuJMqDUb16jB4EsCHthVb74yJcnD/5XWkybYgK5Ieee5o54eyxEzM9jFbZEasysPX4zR05Z/ygEzdlj+QZPg=="; 17382 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.99.tgz"; 17383 + sha512 = "uX3bZtp6Zn53Utyurp4DrKolIDUuiDddHVTgsQ39KhVRkQ8TRMtl0nyXllysMtu78t8zLo9QygeyQ0QOBy3LHw=="; 17375 17384 }; 17376 17385 }; 17377 17386 "consume-http-header-1.0.0" = { ··· 18140 18149 sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; 18141 18150 }; 18142 18151 }; 18143 - "create-gatsby-1.9.0" = { 18152 + "create-gatsby-1.10.0" = { 18144 18153 name = "create-gatsby"; 18145 18154 packageName = "create-gatsby"; 18146 - version = "1.9.0"; 18155 + version = "1.10.0"; 18147 18156 src = fetchurl { 18148 - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.9.0.tgz"; 18149 - sha512 = "KYQnXV2uaZCUt3y4Kkh4hlBGg4LYc6XCEdp99CEfMKOCu34rte5+6c1EZRpphATLqdKIitdFlPp5dJm3knBeMA=="; 18157 + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.10.0.tgz"; 18158 + sha512 = "EiN8bJepWMN4itheoQ9ul1jNrSWoWy5Cw+kAfF1sN0J7ZWtuYCFfRZX97VRTt6C7bvlHkTw7gew2pUbFS8La+Q=="; 18150 18159 }; 18151 18160 }; 18152 18161 "create-graphback-1.0.1" = { ··· 21857 21866 sha512 = "07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g=="; 21858 21867 }; 21859 21868 }; 21860 - "duplexify-4.1.1" = { 21869 + "duplexify-4.1.2" = { 21861 21870 name = "duplexify"; 21862 21871 packageName = "duplexify"; 21863 - version = "4.1.1"; 21872 + version = "4.1.2"; 21864 21873 src = fetchurl { 21865 - url = "https://registry.npmjs.org/duplexify/-/duplexify-4.1.1.tgz"; 21866 - sha512 = "DY3xVEmVHTv1wSzKNbwoU6nVjzI369Y6sPoqfYr0/xlx3IdX2n94xIszTcjPO8W8ZIv0Wb0PXNcjuZyT4wiICA=="; 21874 + url = "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz"; 21875 + sha512 = "fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw=="; 21867 21876 }; 21868 21877 }; 21869 21878 "duration-0.2.2" = { ··· 22055 22064 sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ=="; 22056 22065 }; 22057 22066 }; 22058 - "electron-to-chromium-1.3.780" = { 22067 + "electron-to-chromium-1.3.782" = { 22059 22068 name = "electron-to-chromium"; 22060 22069 packageName = "electron-to-chromium"; 22061 - version = "1.3.780"; 22070 + version = "1.3.782"; 22062 22071 src = fetchurl { 22063 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.780.tgz"; 22064 - sha512 = "2KQ9OYm9WMUNpAPA/4aerURl3hwRc9tNlpsiEj3Y8Gf7LVf26NzyLIX2v0hSagQwrS9+cWab+28A2GPKDoVNRA=="; 22072 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.782.tgz"; 22073 + sha512 = "6AI2se1NqWA1SBf/tlD6tQD/6ZOt+yAhqmrTlh4XZw4/g0Mt3p6JhTQPZxRPxPZiOg0o7ss1EBP/CpYejfnoIA=="; 22065 22074 }; 22066 22075 }; 22067 22076 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 25000 25009 sha512 = "sXAMgFk67fQLcetXustxfKX+PZgHIUFn96Xld9uH8aXPdX3xOp0/jg9OdouVTvQrf7mrn+wAa4jN/y9fUOOiRA=="; 25001 25010 }; 25002 25011 }; 25003 - "file-type-16.5.1" = { 25012 + "file-type-16.5.2" = { 25004 25013 name = "file-type"; 25005 25014 packageName = "file-type"; 25006 - version = "16.5.1"; 25015 + version = "16.5.2"; 25007 25016 src = fetchurl { 25008 - url = "https://registry.npmjs.org/file-type/-/file-type-16.5.1.tgz"; 25009 - sha512 = "Pi1G43smrCy82Q3be3sfKaeS5uHdfj905dP88YqhroG6TYbVY2ljTdDXeXqa6Cn5nOk6znOjWM2uZptA8vH/qQ=="; 25017 + url = "https://registry.npmjs.org/file-type/-/file-type-16.5.2.tgz"; 25018 + sha512 = "lnHRZj2USLF3v4C5ZY7/vQQeoTVA1YV9TtD6UUCr9z5Cd0uyutqxPBJxkXzM6lufPNuSfefq/yFmnSPz0C3wNw=="; 25010 25019 }; 25011 25020 }; 25012 25021 "file-type-3.9.0" = { ··· 26602 26611 sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9"; 26603 26612 }; 26604 26613 }; 26605 - "gatsby-core-utils-2.9.0" = { 26614 + "gatsby-core-utils-2.10.0" = { 26606 26615 name = "gatsby-core-utils"; 26607 26616 packageName = "gatsby-core-utils"; 26608 - version = "2.9.0"; 26617 + version = "2.10.0"; 26609 26618 src = fetchurl { 26610 - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.9.0.tgz"; 26611 - sha512 = "LKmkk4B/VnSEYKR9W/C8Lp9lwk/l/qY5jbsoiChc43F67VM667gITWH0noSUdcGzbEsN8xi0Wuc8dMA6BvKkvg=="; 26619 + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.10.0.tgz"; 26620 + sha512 = "xvVebKSrjHkZQQkeEjuAekCAg17KT2l44d/yn7w2dzBGay244m8hoY8LRtLRdsrSp30ix89QklefuP9frEfhbA=="; 26612 26621 }; 26613 26622 }; 26614 - "gatsby-recipes-0.20.0" = { 26623 + "gatsby-recipes-0.21.0" = { 26615 26624 name = "gatsby-recipes"; 26616 26625 packageName = "gatsby-recipes"; 26617 - version = "0.20.0"; 26626 + version = "0.21.0"; 26618 26627 src = fetchurl { 26619 - url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.20.0.tgz"; 26620 - sha512 = "GsQOovAFImV3MtZVTTjv6utMRRo5QDC1+7l3Je3kqHz425J7UcmjMH/ZzHdzIZ1hO2/RUgGoFXAbWgqhipJp2g=="; 26628 + url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.21.0.tgz"; 26629 + sha512 = "oo9ci5G6TiXc5wVnRrTfJhX92ZsjICVa0ldX7aQ/8JR77HelfO3MFfQuIkswla+o0MGcbyxgVoLX45kgzY7aaA=="; 26621 26630 }; 26622 26631 }; 26623 - "gatsby-telemetry-2.9.0" = { 26632 + "gatsby-telemetry-2.10.0" = { 26624 26633 name = "gatsby-telemetry"; 26625 26634 packageName = "gatsby-telemetry"; 26626 - version = "2.9.0"; 26635 + version = "2.10.0"; 26627 26636 src = fetchurl { 26628 - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.9.0.tgz"; 26629 - sha512 = "Ji40by9qHm9Zz2vKIBACT77awt0FpqKES9uT9nLmaqyiOZ/7Hs1dKwMrZ2yCkHNBh6S9RplcgfUQLq2LE4oeaA=="; 26637 + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.10.0.tgz"; 26638 + sha512 = "uon+KRo6NQqkc6Qk/QTw+RmaxIjFFIK7cSU8XXE3y353il2Tk04Kxct2hMHn8Zdl4TYyKla1T5UIvVV/EfpBcg=="; 26630 26639 }; 26631 26640 }; 26632 26641 "gauge-1.2.7" = { ··· 33435 33444 sha512 = "Heu6D+yI5mmUklLQdX3PdDvHUQm14618Fj4PQM9seKa4cohxzJ7EHopfRObKYHMko9awopx4Qr7Gtu6u/QPqfw=="; 33436 33445 }; 33437 33446 }; 33438 - "jsii-srcmak-0.1.301" = { 33447 + "jsii-srcmak-0.1.302" = { 33439 33448 name = "jsii-srcmak"; 33440 33449 packageName = "jsii-srcmak"; 33441 - version = "0.1.301"; 33450 + version = "0.1.302"; 33442 33451 src = fetchurl { 33443 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.301.tgz"; 33444 - sha512 = "RmUimAPVkk1QflCGjJVUsQsv+W+lD6yZMLpHEHkNEdUvlYSUkZIM2VXjF7LUw7HnS9gFFBftUd6W02OVGbd9Bg=="; 33452 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.302.tgz"; 33453 + sha512 = "UsXZ6LGLqP/nUNyq0ey3xOLpNDpkye5HeNAnJCVqw4vsT9o5EX7MHv9ca/JDlt7fWn+cUdo/Bcj5UZJvg+Chfg=="; 33445 33454 }; 33446 33455 }; 33447 33456 "json-bigint-0.2.3" = { ··· 33750 33759 sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 33751 33760 }; 33752 33761 }; 33753 - "json2jsii-0.1.270" = { 33762 + "json2jsii-0.1.272" = { 33754 33763 name = "json2jsii"; 33755 33764 packageName = "json2jsii"; 33756 - version = "0.1.270"; 33765 + version = "0.1.272"; 33757 33766 src = fetchurl { 33758 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.270.tgz"; 33759 - sha512 = "blBOb7+GDWTLv6jxye684joWzQyuFM6HT+NsPQPuASkT7pABBt3Xx2wsVm/qMJeg7ITufgSfeh1TnNrFROicMg=="; 33767 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.272.tgz"; 33768 + sha512 = "OUZqjQhnRalQmQx3kFM3mG5DQcfEYzmUYBWGdb6QwGLuvwB/eJ2PhXuLEkGF+PhRwOrW5IyEcF8U+O39mh3G5Q=="; 33760 33769 }; 33761 33770 }; 33762 33771 "json3-3.2.6" = { ··· 35101 35110 sha512 = "yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw=="; 35102 35111 }; 35103 35112 }; 35104 - "lighthouse-logger-1.2.0" = { 35113 + "lighthouse-logger-1.3.0" = { 35105 35114 name = "lighthouse-logger"; 35106 35115 packageName = "lighthouse-logger"; 35107 - version = "1.2.0"; 35116 + version = "1.3.0"; 35108 35117 src = fetchurl { 35109 - url = "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.2.0.tgz"; 35110 - sha512 = "wzUvdIeJZhRsG6gpZfmSCfysaxNEr43i+QT+Hie94wvHDKFLi4n7C2GqZ4sTC+PH5b5iktmXJvU87rWvhP3lHw=="; 35118 + url = "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.3.0.tgz"; 35119 + sha512 = "BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA=="; 35111 35120 }; 35112 35121 }; 35113 35122 "lightning-3.3.12" = { ··· 35135 35144 src = fetchurl { 35136 35145 url = "https://registry.npmjs.org/lightning/-/lightning-3.3.9.tgz"; 35137 35146 sha512 = "z/bfkDEAKyN0HtN7rkiyVlDA3J5L/jxXsE4YuGfQPa8TyPWovyLdo6/aHP0mMy8n+G4tq0g2oKZ/1Z5ONJAVqA=="; 35147 + }; 35148 + }; 35149 + "lightning-3.4.0" = { 35150 + name = "lightning"; 35151 + packageName = "lightning"; 35152 + version = "3.4.0"; 35153 + src = fetchurl { 35154 + url = "https://registry.npmjs.org/lightning/-/lightning-3.4.0.tgz"; 35155 + sha512 = "lD6PgHipqedfFcTEf/9mDF3s4KGO/lecr02W6zHBJHohNphuBUZS1z68kKRJAl3N4iHmDEfLxt+G86PBP0jhHw=="; 35138 35156 }; 35139 35157 }; 35140 35158 "lilconfig-2.0.3" = { ··· 35281 35299 sha512 = "EBEeBymqktoaViGAG5aVmgIOZpWc6IwDqxq93ZYYIw+Uc9Vy/86nUDPx8A/jJC0f8lwEGcqT+hnSIiBF4SyqeA=="; 35282 35300 }; 35283 35301 }; 35302 + "ln-service-51.10.0" = { 35303 + name = "ln-service"; 35304 + packageName = "ln-service"; 35305 + version = "51.10.0"; 35306 + src = fetchurl { 35307 + url = "https://registry.npmjs.org/ln-service/-/ln-service-51.10.0.tgz"; 35308 + sha512 = "k6wGBB6RfyHhMY296MsHhZrVuJSqNsqx3nF3WM5lkKAg+58OdU6bLzqVttpit9uHamc6tssD2GDxNS6gdUzOYQ=="; 35309 + }; 35310 + }; 35284 35311 "ln-service-51.8.2" = { 35285 35312 name = "ln-service"; 35286 35313 packageName = "ln-service"; ··· 35317 35344 sha512 = "FMfcEISlboFVz+wLTAJ+FnEIQkoMR7IHcUg4l5JNwsU/UOijM1vTQDFhHVqg5fEQAFboZe3lNd7Rh1uxxqs47Q=="; 35318 35345 }; 35319 35346 }; 35347 + "ln-sync-0.4.7" = { 35348 + name = "ln-sync"; 35349 + packageName = "ln-sync"; 35350 + version = "0.4.7"; 35351 + src = fetchurl { 35352 + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-0.4.7.tgz"; 35353 + sha512 = "2yqc59OhK0affnkwhgw7iY4x2tKZTb8y8KSWxRHn6cSXL3clUJgXdTNOGr4Jp8j1TkTl0iRVnLSNZlRbtU4vVA=="; 35354 + }; 35355 + }; 35320 35356 "ln-telegram-3.2.9" = { 35321 35357 name = "ln-telegram"; 35322 35358 packageName = "ln-telegram"; ··· 45265 45301 sha512 = "iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA=="; 45266 45302 }; 45267 45303 }; 45304 + "peek-readable-3.1.4" = { 45305 + name = "peek-readable"; 45306 + packageName = "peek-readable"; 45307 + version = "3.1.4"; 45308 + src = fetchurl { 45309 + url = "https://registry.npmjs.org/peek-readable/-/peek-readable-3.1.4.tgz"; 45310 + sha512 = "DX7ec7frSMtCWw+zMd27f66hcxIz/w9LQTY2RflB4WNHCVPAye1pJiP2t3gvaaOhu7IOhtPbHw8MemMj+F5lrg=="; 45311 + }; 45312 + }; 45268 45313 "peek-readable-4.0.0" = { 45269 45314 name = "peek-readable"; 45270 45315 packageName = "peek-readable"; ··· 51584 51629 sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A=="; 51585 51630 }; 51586 51631 }; 51587 - "rollup-2.53.2" = { 51632 + "rollup-2.53.3" = { 51588 51633 name = "rollup"; 51589 51634 packageName = "rollup"; 51590 - version = "2.53.2"; 51635 + version = "2.53.3"; 51591 51636 src = fetchurl { 51592 - url = "https://registry.npmjs.org/rollup/-/rollup-2.53.2.tgz"; 51593 - sha512 = "1CtEYuS5CRCzFZ7SNW5528SlDlk4VDXIRGwbm/2POQxA/G4+7/crIqJwkmnj8Q/74hGx4oVlNvh4E1CJQ5hZ6w=="; 51637 + url = "https://registry.npmjs.org/rollup/-/rollup-2.53.3.tgz"; 51638 + sha512 = "79QIGP5DXz5ZHYnCPi3tLz+elOQi6gudp9YINdaJdjG0Yddubo6JRFUM//qCZ0Bap/GJrsUoEBVdSOc4AkMlRA=="; 51594 51639 }; 51595 51640 }; 51596 51641 "rollup-plugin-babel-4.4.0" = { ··· 55202 55247 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 55203 55248 }; 55204 55249 }; 55205 - "sscaff-1.2.21" = { 55250 + "sscaff-1.2.22" = { 55206 55251 name = "sscaff"; 55207 55252 packageName = "sscaff"; 55208 - version = "1.2.21"; 55253 + version = "1.2.22"; 55209 55254 src = fetchurl { 55210 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.21.tgz"; 55211 - sha512 = "X9Ei1liwS+LljdRsWz/QbgYK2sByLbDpvLTwVlL8+fGSz9Oh1D85WU3TR8kCCuPKLvfdGWIRimSQWvJ8zh5riw=="; 55255 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.22.tgz"; 55256 + sha512 = "aEkcIR+UIro2xsDASNy/K0v7hxGi18jgFshHpGrJ/tfB0GlQHQJR0W9y23mNxfDmFg/lbTaR0BdEsgC0znNEGA=="; 55212 55257 }; 55213 55258 }; 55214 55259 "ssh-config-1.1.6" = { ··· 56480 56525 sha1 = "0fdedc68e91addcfcb2e6be9c262581a6e8c28aa"; 56481 56526 }; 56482 56527 }; 56528 + "strtok3-6.1.3" = { 56529 + name = "strtok3"; 56530 + packageName = "strtok3"; 56531 + version = "6.1.3"; 56532 + src = fetchurl { 56533 + url = "https://registry.npmjs.org/strtok3/-/strtok3-6.1.3.tgz"; 56534 + sha512 = "ssWSKFOeUTurMSucgyUf+a6Z9mVTYrsYiyEK5RLnh8BM6sFrKSljVlnjZXIDxMguYfdQI+mUPFHo88FYTxq1XA=="; 56535 + }; 56536 + }; 56483 56537 "strtok3-6.2.2" = { 56484 56538 name = "strtok3"; 56485 56539 packageName = "strtok3"; ··· 58621 58675 src = fetchurl { 58622 58676 url = "https://registry.npmjs.org/token-types/-/token-types-2.1.1.tgz"; 58623 58677 sha512 = "wnQcqlreS6VjthyHO3Y/kpK/emflxDBNhlNUPfh7wE39KnuDdOituXomIbyI79vBtF0Ninpkh72mcuRHo+RG3Q=="; 58678 + }; 58679 + }; 58680 + "token-types-3.1.0" = { 58681 + name = "token-types"; 58682 + packageName = "token-types"; 58683 + version = "3.1.0"; 58684 + src = fetchurl { 58685 + url = "https://registry.npmjs.org/token-types/-/token-types-3.1.0.tgz"; 58686 + sha512 = "WhoeIW7UTn7NC7L0t/4x3vU/YYSS1oeUxYgiGXQLd82Kaf1qtlxOex3ETY0+o2QuRgAdyursMlUhQBKDCfMUkQ=="; 58624 58687 }; 58625 58688 }; 58626 58689 "toml-2.3.6" = { ··· 66429 66492 sources."@hyperswarm/hypersign-2.1.1" 66430 66493 sources."@hyperswarm/network-2.1.0" 66431 66494 sources."@leichtgewicht/ip-codec-2.0.3" 66432 - sources."@types/node-16.3.3" 66495 + sources."@types/node-16.4.0" 66433 66496 sources."abstract-extension-3.1.1" 66434 66497 sources."abstract-leveldown-6.2.3" 66435 66498 sources."ansi-colors-3.2.3" ··· 66743 66806 sources."pump-3.0.0" 66744 66807 (sources."pumpify-2.0.1" // { 66745 66808 dependencies = [ 66746 - sources."duplexify-4.1.1" 66809 + sources."duplexify-4.1.2" 66747 66810 sources."readable-stream-3.6.0" 66748 66811 ]; 66749 66812 }) ··· 66934 66997 ]; 66935 66998 }) 66936 66999 sources."@babel/code-frame-7.14.5" 66937 - sources."@babel/helper-validator-identifier-7.14.5" 67000 + sources."@babel/helper-validator-identifier-7.14.8" 66938 67001 (sources."@babel/highlight-7.14.5" // { 66939 67002 dependencies = [ 66940 67003 sources."ansi-styles-3.2.1" ··· 66959 67022 sources."@types/eslint-scope-3.7.1" 66960 67023 sources."@types/estree-0.0.49" 66961 67024 sources."@types/json-schema-7.0.8" 66962 - sources."@types/node-16.3.3" 67025 + sources."@types/node-16.4.0" 66963 67026 sources."@types/parse-json-4.0.0" 66964 67027 sources."@webassemblyjs/ast-1.11.1" 66965 67028 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 66998 67061 sources."buffer-5.7.1" 66999 67062 sources."buffer-from-1.1.1" 67000 67063 sources."callsites-3.1.0" 67001 - sources."caniuse-lite-1.0.30001245" 67064 + sources."caniuse-lite-1.0.30001246" 67002 67065 sources."chalk-3.0.0" 67003 67066 sources."chardet-0.7.0" 67004 67067 sources."chokidar-3.5.2" ··· 67025 67088 sources."cross-spawn-7.0.3" 67026 67089 sources."deepmerge-4.2.2" 67027 67090 sources."defaults-1.0.3" 67028 - sources."electron-to-chromium-1.3.780" 67091 + sources."electron-to-chromium-1.3.782" 67029 67092 sources."emoji-regex-8.0.0" 67030 67093 sources."end-of-stream-1.4.4" 67031 67094 (sources."enhanced-resolve-5.8.2" // { ··· 67273 67336 sources."@apollographql/graphql-upload-8-fork-8.1.3" 67274 67337 sources."@babel/code-frame-7.14.5" 67275 67338 sources."@babel/compat-data-7.14.7" 67276 - sources."@babel/core-7.14.6" 67277 - sources."@babel/generator-7.14.5" 67339 + sources."@babel/core-7.14.8" 67340 + sources."@babel/generator-7.14.8" 67278 67341 sources."@babel/helper-annotate-as-pure-7.14.5" 67279 67342 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 67280 67343 sources."@babel/helper-compilation-targets-7.14.5" 67281 - sources."@babel/helper-create-class-features-plugin-7.14.6" 67344 + sources."@babel/helper-create-class-features-plugin-7.14.8" 67282 67345 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 67283 67346 sources."@babel/helper-define-polyfill-provider-0.2.3" 67284 67347 sources."@babel/helper-explode-assignable-expression-7.14.5" ··· 67287 67350 sources."@babel/helper-hoist-variables-7.14.5" 67288 67351 sources."@babel/helper-member-expression-to-functions-7.14.7" 67289 67352 sources."@babel/helper-module-imports-7.14.5" 67290 - sources."@babel/helper-module-transforms-7.14.5" 67353 + sources."@babel/helper-module-transforms-7.14.8" 67291 67354 sources."@babel/helper-optimise-call-expression-7.14.5" 67292 67355 sources."@babel/helper-plugin-utils-7.14.5" 67293 67356 sources."@babel/helper-remap-async-to-generator-7.14.5" 67294 67357 sources."@babel/helper-replace-supers-7.14.5" 67295 - sources."@babel/helper-simple-access-7.14.5" 67358 + sources."@babel/helper-simple-access-7.14.8" 67296 67359 sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 67297 67360 sources."@babel/helper-split-export-declaration-7.14.5" 67298 - sources."@babel/helper-validator-identifier-7.14.5" 67361 + sources."@babel/helper-validator-identifier-7.14.8" 67299 67362 sources."@babel/helper-validator-option-7.14.5" 67300 67363 sources."@babel/helper-wrap-function-7.14.5" 67301 - sources."@babel/helpers-7.14.6" 67364 + sources."@babel/helpers-7.14.8" 67302 67365 sources."@babel/highlight-7.14.5" 67303 - sources."@babel/parser-7.14.7" 67366 + sources."@babel/parser-7.14.8" 67304 67367 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 67305 67368 sources."@babel/plugin-proposal-async-generator-functions-7.14.7" 67306 67369 sources."@babel/plugin-proposal-class-properties-7.14.5" ··· 67367 67430 sources."@babel/plugin-transform-typescript-7.14.6" 67368 67431 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 67369 67432 sources."@babel/plugin-transform-unicode-regex-7.14.5" 67370 - sources."@babel/preset-env-7.14.7" 67433 + sources."@babel/preset-env-7.14.8" 67371 67434 sources."@babel/preset-flow-7.14.5" 67372 67435 sources."@babel/preset-modules-0.1.4" 67373 67436 sources."@babel/preset-typescript-7.14.5" ··· 67378 67441 sources."semver-5.7.1" 67379 67442 ]; 67380 67443 }) 67381 - sources."@babel/runtime-7.14.6" 67444 + sources."@babel/runtime-7.14.8" 67382 67445 sources."@babel/template-7.14.5" 67383 - sources."@babel/traverse-7.14.7" 67384 - sources."@babel/types-7.14.5" 67446 + sources."@babel/traverse-7.14.8" 67447 + sources."@babel/types-7.14.8" 67385 67448 sources."@hapi/address-2.1.4" 67386 67449 sources."@hapi/bourne-1.3.2" 67387 67450 sources."@hapi/hoek-8.5.1" ··· 67434 67497 sources."@types/long-4.0.1" 67435 67498 sources."@types/mime-1.3.2" 67436 67499 sources."@types/minimatch-3.0.5" 67437 - sources."@types/node-16.3.3" 67500 + sources."@types/node-16.4.0" 67438 67501 sources."@types/normalize-package-data-2.4.1" 67439 67502 sources."@types/qs-6.9.7" 67440 67503 sources."@types/range-parser-1.2.4" ··· 67577 67640 sources."call-bind-1.0.2" 67578 67641 sources."call-me-maybe-1.0.1" 67579 67642 sources."camelcase-5.3.1" 67580 - sources."caniuse-lite-1.0.30001245" 67643 + sources."caniuse-lite-1.0.30001246" 67581 67644 sources."caseless-0.12.0" 67582 67645 sources."caw-2.0.1" 67583 67646 sources."chalk-2.4.2" ··· 67705 67768 sources."ecc-jsbn-0.1.2" 67706 67769 sources."ee-first-1.1.1" 67707 67770 sources."ejs-2.7.4" 67708 - sources."electron-to-chromium-1.3.780" 67771 + sources."electron-to-chromium-1.3.782" 67709 67772 sources."emoji-regex-7.0.3" 67710 67773 sources."encodeurl-1.0.2" 67711 67774 sources."end-of-stream-1.4.4" ··· 68598 68661 }; 68599 68662 dependencies = [ 68600 68663 sources."@babel/code-frame-7.14.5" 68601 - sources."@babel/generator-7.14.5" 68602 - sources."@babel/helper-validator-identifier-7.14.5" 68664 + sources."@babel/generator-7.14.8" 68665 + sources."@babel/helper-validator-identifier-7.14.8" 68603 68666 sources."@babel/highlight-7.14.5" 68604 - sources."@babel/parser-7.14.7" 68667 + sources."@babel/parser-7.14.8" 68605 68668 sources."@babel/template-7.14.5" 68606 - sources."@babel/types-7.14.5" 68669 + sources."@babel/types-7.14.8" 68607 68670 sources."@webassemblyjs/ast-1.11.1" 68608 68671 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 68609 68672 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 68679 68742 dependencies = [ 68680 68743 sources."@babel/code-frame-7.14.5" 68681 68744 sources."@babel/compat-data-7.14.7" 68682 - (sources."@babel/core-7.14.6" // { 68745 + (sources."@babel/core-7.14.8" // { 68683 68746 dependencies = [ 68684 68747 sources."source-map-0.5.7" 68685 68748 ]; 68686 68749 }) 68687 - (sources."@babel/generator-7.14.5" // { 68750 + (sources."@babel/generator-7.14.8" // { 68688 68751 dependencies = [ 68689 68752 sources."source-map-0.5.7" 68690 68753 ]; ··· 68695 68758 sources."@babel/helper-hoist-variables-7.14.5" 68696 68759 sources."@babel/helper-member-expression-to-functions-7.14.7" 68697 68760 sources."@babel/helper-module-imports-7.14.5" 68698 - sources."@babel/helper-module-transforms-7.14.5" 68761 + sources."@babel/helper-module-transforms-7.14.8" 68699 68762 sources."@babel/helper-optimise-call-expression-7.14.5" 68700 68763 sources."@babel/helper-replace-supers-7.14.5" 68701 - sources."@babel/helper-simple-access-7.14.5" 68764 + sources."@babel/helper-simple-access-7.14.8" 68702 68765 sources."@babel/helper-split-export-declaration-7.14.5" 68703 - sources."@babel/helper-validator-identifier-7.14.5" 68766 + sources."@babel/helper-validator-identifier-7.14.8" 68704 68767 sources."@babel/helper-validator-option-7.14.5" 68705 - sources."@babel/helpers-7.14.6" 68768 + sources."@babel/helpers-7.14.8" 68706 68769 sources."@babel/highlight-7.14.5" 68707 - sources."@babel/parser-7.14.7" 68770 + sources."@babel/parser-7.14.8" 68708 68771 sources."@babel/template-7.14.5" 68709 - sources."@babel/traverse-7.14.7" 68710 - sources."@babel/types-7.14.5" 68772 + sources."@babel/traverse-7.14.8" 68773 + sources."@babel/types-7.14.8" 68711 68774 sources."JSV-4.0.2" 68712 68775 sources."ansi-styles-3.2.1" 68713 68776 sources."array-unique-0.3.2" ··· 68715 68778 sources."balanced-match-1.0.2" 68716 68779 sources."brace-expansion-1.1.11" 68717 68780 sources."browserslist-4.16.6" 68718 - sources."caniuse-lite-1.0.30001245" 68781 + sources."caniuse-lite-1.0.30001246" 68719 68782 sources."chalk-2.4.2" 68720 68783 sources."color-convert-1.9.3" 68721 68784 sources."color-name-1.1.3" ··· 68726 68789 sources."convert-source-map-1.8.0" 68727 68790 sources."debug-4.3.2" 68728 68791 sources."ejs-3.1.6" 68729 - sources."electron-to-chromium-1.3.780" 68792 + sources."electron-to-chromium-1.3.782" 68730 68793 sources."ensure-posix-path-1.1.1" 68731 68794 sources."escalade-3.1.1" 68732 68795 sources."escape-string-regexp-1.0.5" ··· 68820 68883 dependencies = [ 68821 68884 sources."@types/glob-7.1.4" 68822 68885 sources."@types/minimatch-3.0.5" 68823 - sources."@types/node-16.3.3" 68886 + sources."@types/node-16.4.0" 68824 68887 sources."balanced-match-1.0.2" 68825 68888 sources."brace-expansion-1.1.11" 68826 68889 sources."chromium-pickle-js-0.2.0" ··· 68855 68918 }; 68856 68919 dependencies = [ 68857 68920 sources."browserslist-4.16.6" 68858 - sources."caniuse-lite-1.0.30001245" 68921 + sources."caniuse-lite-1.0.30001246" 68859 68922 sources."colorette-1.2.2" 68860 - sources."electron-to-chromium-1.3.780" 68923 + sources."electron-to-chromium-1.3.782" 68861 68924 sources."escalade-3.1.1" 68862 68925 sources."fraction.js-4.1.1" 68863 68926 sources."node-releases-1.1.73" ··· 68884 68947 }; 68885 68948 dependencies = [ 68886 68949 sources."@tootallnate/once-1.1.2" 68887 - sources."@types/node-16.3.3" 68950 + sources."@types/node-16.4.0" 68888 68951 sources."@types/yauzl-2.9.2" 68889 68952 sources."agent-base-6.0.2" 68890 68953 sources."ansi-escapes-4.3.2" 68891 68954 sources."ansi-regex-5.0.0" 68892 68955 sources."ansi-styles-4.3.0" 68893 68956 sources."ast-types-0.13.4" 68894 - (sources."aws-sdk-2.949.0" // { 68957 + (sources."aws-sdk-2.950.0" // { 68895 68958 dependencies = [ 68896 68959 sources."uuid-3.3.2" 68897 68960 ]; ··· 69095 69158 balanceofsatoshis = nodeEnv.buildNodePackage { 69096 69159 name = "balanceofsatoshis"; 69097 69160 packageName = "balanceofsatoshis"; 69098 - version = "10.7.0"; 69161 + version = "10.7.1"; 69099 69162 src = fetchurl { 69100 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.7.0.tgz"; 69101 - sha512 = "rJ29qKw5UMS5WM9hdur696oXNiuszSJLhYKMBQuHDuwITeuwNk9GYhXyXRVFFOKVNetjsP/HruSU6tZ3jBq4kQ=="; 69163 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.7.1.tgz"; 69164 + sha512 = "V3LVbkFNTiy+ctpvCDgEgP8e0myUC/Iupm8D9URkS76SFYibAoMX3elcLVtsOXXqM4QyRrg29iGZj+HB+sQCHg=="; 69102 69165 }; 69103 69166 dependencies = [ 69104 69167 sources."@alexbosworth/html2unicode-1.1.5" ··· 69111 69174 sources."@cto.af/textdecoder-0.0.0" 69112 69175 (sources."@grpc/grpc-js-1.3.2" // { 69113 69176 dependencies = [ 69114 - sources."@types/node-16.3.3" 69177 + sources."@types/node-16.4.0" 69115 69178 ]; 69116 69179 }) 69117 69180 sources."@grpc/proto-loader-0.6.2" ··· 69478 69541 sources."ws-7.5.0" 69479 69542 ]; 69480 69543 }) 69481 - (sources."ln-service-51.9.0" // { 69544 + (sources."ln-service-51.10.0" // { 69482 69545 dependencies = [ 69483 - sources."@grpc/grpc-js-1.3.5" 69546 + sources."@grpc/grpc-js-1.3.6" 69484 69547 sources."@grpc/proto-loader-0.6.4" 69485 69548 sources."@types/express-4.17.13" 69486 - sources."@types/node-16.3.2" 69549 + sources."@types/node-16.3.3" 69487 69550 sources."@types/request-2.48.6" 69488 - sources."@types/ws-7.4.6" 69551 + sources."@types/ws-7.4.7" 69489 69552 sources."bn.js-5.2.0" 69490 69553 sources."form-data-2.5.1" 69491 - sources."lightning-3.3.16" 69554 + sources."lightning-3.4.0" 69492 69555 sources."ws-7.5.3" 69493 69556 ]; 69494 69557 }) 69495 - (sources."ln-sync-0.4.6" // { 69558 + (sources."ln-sync-0.4.7" // { 69496 69559 dependencies = [ 69497 - sources."@grpc/grpc-js-1.3.4" 69498 - sources."@grpc/proto-loader-0.6.3" 69499 - sources."@types/node-15.12.5" 69500 - sources."@types/ws-7.4.5" 69560 + sources."@grpc/grpc-js-1.3.6" 69561 + sources."@grpc/proto-loader-0.6.4" 69562 + sources."@types/express-4.17.13" 69563 + sources."@types/node-16.3.3" 69564 + sources."@types/request-2.48.6" 69565 + sources."@types/ws-7.4.7" 69566 + sources."bn.js-5.2.0" 69567 + sources."form-data-2.5.1" 69568 + sources."lightning-3.4.0" 69569 + ]; 69570 + }) 69571 + (sources."ln-telegram-3.2.9" // { 69572 + dependencies = [ 69573 + sources."@grpc/grpc-js-1.3.5" 69574 + sources."@grpc/proto-loader-0.6.4" 69575 + sources."@types/express-4.17.13" 69576 + sources."@types/node-16.3.2" 69577 + sources."@types/request-2.48.6" 69578 + sources."@types/ws-7.4.6" 69501 69579 sources."bn.js-5.2.0" 69502 69580 sources."cbor-7.0.5" 69503 - sources."lightning-3.3.12" 69581 + sources."form-data-2.5.1" 69582 + sources."lightning-3.3.16" 69583 + sources."ln-service-51.9.0" 69584 + (sources."ln-sync-0.4.6" // { 69585 + dependencies = [ 69586 + sources."@grpc/grpc-js-1.3.4" 69587 + sources."@grpc/proto-loader-0.6.3" 69588 + sources."@types/express-4.17.12" 69589 + sources."@types/node-15.12.5" 69590 + sources."@types/request-2.48.5" 69591 + sources."@types/ws-7.4.5" 69592 + sources."lightning-3.3.12" 69593 + ]; 69594 + }) 69595 + sources."ws-7.5.3" 69504 69596 ]; 69505 69597 }) 69506 - sources."ln-telegram-3.2.9" 69507 69598 sources."lodash-4.17.21" 69508 69599 sources."lodash.camelcase-4.3.0" 69509 69600 sources."lodash.clonedeep-4.5.0" ··· 69626 69717 sources."process-nextick-args-2.0.1" 69627 69718 (sources."protobufjs-6.11.2" // { 69628 69719 dependencies = [ 69629 - sources."@types/node-16.3.3" 69720 + sources."@types/node-16.4.0" 69630 69721 ]; 69631 69722 }) 69632 69723 sources."proxy-addr-2.0.7" ··· 70344 70435 }; 70345 70436 dependencies = [ 70346 70437 sources."@babel/code-frame-7.14.5" 70347 - sources."@babel/helper-validator-identifier-7.14.5" 70438 + sources."@babel/helper-validator-identifier-7.14.8" 70348 70439 sources."@babel/highlight-7.14.5" 70349 - sources."@babel/parser-7.14.7" 70350 - sources."@babel/types-7.14.5" 70440 + sources."@babel/parser-7.14.8" 70441 + sources."@babel/types-7.14.8" 70351 70442 sources."@kwsites/file-exists-1.1.1" 70352 70443 sources."@kwsites/promise-deferred-1.1.1" 70353 70444 sources."@types/minimist-1.2.2" ··· 70806 70897 sources."@protobufjs/pool-1.1.0" 70807 70898 sources."@protobufjs/utf8-1.1.0" 70808 70899 sources."@types/long-4.0.1" 70809 - sources."@types/node-16.3.3" 70900 + sources."@types/node-16.4.0" 70810 70901 sources."addr-to-ip-port-1.5.1" 70811 70902 sources."airplay-js-0.2.16" 70812 70903 sources."ajv-6.12.6" ··· 71240 71331 sources."color-name-1.1.4" 71241 71332 sources."colors-1.4.0" 71242 71333 sources."commonmark-0.29.3" 71243 - sources."constructs-3.3.98" 71334 + sources."constructs-3.3.99" 71244 71335 sources."date-format-3.0.0" 71245 71336 sources."debug-4.3.2" 71246 71337 sources."decamelize-5.0.0" ··· 71313 71404 sources."yargs-16.2.0" 71314 71405 ]; 71315 71406 }) 71316 - (sources."jsii-srcmak-0.1.301" // { 71407 + (sources."jsii-srcmak-0.1.302" // { 71317 71408 dependencies = [ 71318 71409 sources."fs-extra-9.1.0" 71319 71410 ]; 71320 71411 }) 71321 71412 sources."json-schema-0.3.0" 71322 - sources."json2jsii-0.1.270" 71413 + sources."json2jsii-0.1.272" 71323 71414 sources."jsonfile-6.1.0" 71324 71415 sources."jsonschema-1.4.0" 71325 71416 sources."locate-path-5.0.0" ··· 71355 71446 sources."snake-case-3.0.4" 71356 71447 sources."sort-json-2.0.0" 71357 71448 sources."spdx-license-list-6.4.0" 71358 - sources."sscaff-1.2.21" 71449 + sources."sscaff-1.2.22" 71359 71450 (sources."streamroller-2.2.4" // { 71360 71451 dependencies = [ 71361 71452 sources."date-format-2.1.0" ··· 71470 71561 sources."commonmark-0.29.3" 71471 71562 sources."compress-commons-4.1.1" 71472 71563 sources."concat-map-0.0.1" 71473 - sources."constructs-3.3.98" 71564 + sources."constructs-3.3.99" 71474 71565 sources."convert-to-spaces-1.0.2" 71475 71566 sources."core-util-is-1.0.2" 71476 71567 sources."crc-32-1.2.0" ··· 71589 71680 sources."yargs-16.2.0" 71590 71681 ]; 71591 71682 }) 71592 - (sources."jsii-srcmak-0.1.301" // { 71683 + (sources."jsii-srcmak-0.1.302" // { 71593 71684 dependencies = [ 71594 71685 sources."fs-extra-9.1.0" 71595 71686 sources."jsonfile-6.1.0" ··· 71672 71763 sources."slice-ansi-3.0.0" 71673 71764 sources."sort-json-2.0.0" 71674 71765 sources."spdx-license-list-6.4.0" 71675 - sources."sscaff-1.2.21" 71766 + sources."sscaff-1.2.22" 71676 71767 sources."stack-utils-2.0.3" 71677 71768 sources."stream-buffers-3.0.2" 71678 71769 (sources."streamroller-2.2.4" // { ··· 72147 72238 coc-java = nodeEnv.buildNodePackage { 72148 72239 name = "coc-java"; 72149 72240 packageName = "coc-java"; 72150 - version = "1.5.3"; 72241 + version = "1.5.4"; 72151 72242 src = fetchurl { 72152 - url = "https://registry.npmjs.org/coc-java/-/coc-java-1.5.3.tgz"; 72153 - sha512 = "St4Vg5DSHaBW0zqXoSKlKL0KJiASSGMIKDUX2zp/l8ImJd6YI5+SoEwYjCxA2c5x01hZ7k3prXDdfgpKp304RA=="; 72243 + url = "https://registry.npmjs.org/coc-java/-/coc-java-1.5.4.tgz"; 72244 + sha512 = "6/dloBU+OuRHO/YxX/vWYEFykCQSyN+ASTiwIw0O/l5CyDh9E967sLtodN9uH/MAyExOYfl5i65zI20CMZ6zDQ=="; 72154 72245 }; 72155 72246 buildInputs = globalBuildInputs; 72156 72247 meta = { ··· 72473 72564 }; 72474 72565 dependencies = [ 72475 72566 sources."@babel/code-frame-7.12.11" 72476 - sources."@babel/helper-validator-identifier-7.14.5" 72567 + sources."@babel/helper-validator-identifier-7.14.8" 72477 72568 (sources."@babel/highlight-7.14.5" // { 72478 72569 dependencies = [ 72479 72570 sources."chalk-2.4.2" ··· 72552 72643 sources."callsites-3.1.0" 72553 72644 sources."camelcase-2.1.1" 72554 72645 sources."camelcase-keys-2.1.0" 72555 - sources."caniuse-lite-1.0.30001245" 72646 + sources."caniuse-lite-1.0.30001246" 72556 72647 sources."capture-stack-trace-1.0.1" 72557 72648 sources."ccount-1.1.0" 72558 72649 (sources."chalk-4.1.1" // { ··· 72650 72741 sources."domutils-1.7.0" 72651 72742 sources."dot-prop-5.3.0" 72652 72743 sources."duplexer3-0.1.4" 72653 - sources."electron-to-chromium-1.3.780" 72744 + sources."electron-to-chromium-1.3.782" 72654 72745 sources."emoji-regex-8.0.0" 72655 72746 sources."end-of-stream-1.4.4" 72656 72747 sources."enquirer-2.3.6" ··· 73607 73698 dependencies = [ 73608 73699 sources."@babel/code-frame-7.14.5" 73609 73700 sources."@babel/compat-data-7.14.7" 73610 - sources."@babel/core-7.14.6" 73611 - sources."@babel/generator-7.14.5" 73701 + sources."@babel/core-7.14.8" 73702 + sources."@babel/generator-7.14.8" 73612 73703 sources."@babel/helper-compilation-targets-7.14.5" 73613 73704 sources."@babel/helper-function-name-7.14.5" 73614 73705 sources."@babel/helper-get-function-arity-7.14.5" 73615 73706 sources."@babel/helper-hoist-variables-7.14.5" 73616 73707 sources."@babel/helper-member-expression-to-functions-7.14.7" 73617 73708 sources."@babel/helper-module-imports-7.14.5" 73618 - sources."@babel/helper-module-transforms-7.14.5" 73709 + sources."@babel/helper-module-transforms-7.14.8" 73619 73710 sources."@babel/helper-optimise-call-expression-7.14.5" 73620 73711 sources."@babel/helper-replace-supers-7.14.5" 73621 - sources."@babel/helper-simple-access-7.14.5" 73712 + sources."@babel/helper-simple-access-7.14.8" 73622 73713 sources."@babel/helper-split-export-declaration-7.14.5" 73623 - sources."@babel/helper-validator-identifier-7.14.5" 73714 + sources."@babel/helper-validator-identifier-7.14.8" 73624 73715 sources."@babel/helper-validator-option-7.14.5" 73625 - sources."@babel/helpers-7.14.6" 73716 + sources."@babel/helpers-7.14.8" 73626 73717 (sources."@babel/highlight-7.14.5" // { 73627 73718 dependencies = [ 73628 73719 sources."chalk-2.4.2" 73629 73720 ]; 73630 73721 }) 73631 - sources."@babel/parser-7.14.7" 73722 + sources."@babel/parser-7.14.8" 73632 73723 sources."@babel/template-7.14.5" 73633 - sources."@babel/traverse-7.14.7" 73634 - sources."@babel/types-7.14.5" 73724 + sources."@babel/traverse-7.14.8" 73725 + sources."@babel/types-7.14.8" 73635 73726 sources."@nodelib/fs.scandir-2.1.5" 73636 73727 sources."@nodelib/fs.stat-2.0.5" 73637 73728 sources."@nodelib/fs.walk-1.2.8" ··· 73661 73752 sources."callsites-3.1.0" 73662 73753 sources."camelcase-5.3.1" 73663 73754 sources."camelcase-keys-6.2.2" 73664 - sources."caniuse-lite-1.0.30001245" 73755 + sources."caniuse-lite-1.0.30001246" 73665 73756 (sources."chalk-4.1.1" // { 73666 73757 dependencies = [ 73667 73758 sources."ansi-styles-4.3.0" ··· 73699 73790 sources."domelementtype-1.3.1" 73700 73791 sources."domhandler-2.4.2" 73701 73792 sources."domutils-1.7.0" 73702 - sources."electron-to-chromium-1.3.780" 73793 + sources."electron-to-chromium-1.3.782" 73703 73794 sources."emoji-regex-8.0.0" 73704 73795 sources."entities-1.1.2" 73705 73796 sources."error-ex-1.3.2" ··· 73986 74077 }; 73987 74078 dependencies = [ 73988 74079 sources."@babel/code-frame-7.14.5" 73989 - sources."@babel/helper-validator-identifier-7.14.5" 74080 + sources."@babel/helper-validator-identifier-7.14.8" 73990 74081 sources."@babel/highlight-7.14.5" 73991 74082 sources."ansi-styles-3.2.1" 73992 74083 sources."argparse-1.0.10" ··· 74101 74192 }; 74102 74193 dependencies = [ 74103 74194 sources."@babel/code-frame-7.12.11" 74104 - sources."@babel/helper-validator-identifier-7.14.5" 74195 + sources."@babel/helper-validator-identifier-7.14.8" 74105 74196 (sources."@babel/highlight-7.14.5" // { 74106 74197 dependencies = [ 74107 74198 sources."chalk-2.4.2" ··· 75159 75250 }; 75160 75251 dependencies = [ 75161 75252 sources."@babel/code-frame-7.14.5" 75162 - sources."@babel/helper-validator-identifier-7.14.5" 75253 + sources."@babel/helper-validator-identifier-7.14.8" 75163 75254 sources."@babel/highlight-7.14.5" 75164 75255 sources."@mrmlnc/readdir-enhanced-2.2.1" 75165 75256 sources."@nodelib/fs.stat-1.1.3" 75166 75257 sources."@types/glob-7.1.4" 75167 75258 sources."@types/minimatch-3.0.5" 75168 75259 sources."@types/minimist-1.2.2" 75169 - sources."@types/node-16.3.3" 75260 + sources."@types/node-16.4.0" 75170 75261 sources."@types/normalize-package-data-2.4.1" 75171 75262 sources."aggregate-error-3.1.0" 75172 75263 sources."ansi-styles-3.2.1" ··· 75537 75628 sources."@cycle/run-3.4.0" 75538 75629 sources."@cycle/time-0.10.1" 75539 75630 sources."@types/cookiejar-2.1.2" 75540 - sources."@types/node-16.3.3" 75631 + sources."@types/node-16.4.0" 75541 75632 sources."@types/superagent-3.8.2" 75542 75633 sources."ansi-escapes-3.2.0" 75543 75634 sources."ansi-regex-2.1.1" ··· 76852 76943 sources."@types/http-cache-semantics-4.0.1" 76853 76944 sources."@types/keyv-3.1.2" 76854 76945 sources."@types/minimatch-3.0.5" 76855 - sources."@types/node-16.3.3" 76946 + sources."@types/node-16.4.0" 76856 76947 sources."@types/responselike-1.0.0" 76857 76948 sources."@types/yauzl-2.9.2" 76858 76949 sources."abbrev-1.1.1" ··· 77447 77538 dependencies = [ 77448 77539 sources."@babel/code-frame-7.14.5" 77449 77540 sources."@babel/compat-data-7.14.7" 77450 - (sources."@babel/core-7.14.6" // { 77541 + (sources."@babel/core-7.14.8" // { 77451 77542 dependencies = [ 77452 77543 sources."semver-6.3.0" 77453 77544 ]; 77454 77545 }) 77455 - sources."@babel/generator-7.14.5" 77546 + sources."@babel/generator-7.14.8" 77456 77547 sources."@babel/helper-annotate-as-pure-7.14.5" 77457 77548 (sources."@babel/helper-compilation-targets-7.14.5" // { 77458 77549 dependencies = [ ··· 77464 77555 sources."@babel/helper-hoist-variables-7.14.5" 77465 77556 sources."@babel/helper-member-expression-to-functions-7.14.7" 77466 77557 sources."@babel/helper-module-imports-7.14.5" 77467 - sources."@babel/helper-module-transforms-7.14.5" 77558 + sources."@babel/helper-module-transforms-7.14.8" 77468 77559 sources."@babel/helper-optimise-call-expression-7.14.5" 77469 77560 sources."@babel/helper-plugin-utils-7.14.5" 77470 77561 sources."@babel/helper-replace-supers-7.14.5" 77471 - sources."@babel/helper-simple-access-7.14.5" 77562 + sources."@babel/helper-simple-access-7.14.8" 77472 77563 sources."@babel/helper-split-export-declaration-7.14.5" 77473 - sources."@babel/helper-validator-identifier-7.14.5" 77564 + sources."@babel/helper-validator-identifier-7.14.8" 77474 77565 sources."@babel/helper-validator-option-7.14.5" 77475 - sources."@babel/helpers-7.14.6" 77566 + sources."@babel/helpers-7.14.8" 77476 77567 sources."@babel/highlight-7.14.5" 77477 - sources."@babel/parser-7.14.7" 77568 + sources."@babel/parser-7.14.8" 77478 77569 sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 77479 77570 sources."@babel/plugin-syntax-jsx-7.14.5" 77480 77571 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 77482 77573 sources."@babel/plugin-transform-parameters-7.14.5" 77483 77574 sources."@babel/plugin-transform-react-jsx-7.14.5" 77484 77575 sources."@babel/template-7.14.5" 77485 - sources."@babel/traverse-7.14.7" 77486 - sources."@babel/types-7.14.5" 77576 + sources."@babel/traverse-7.14.8" 77577 + sources."@babel/types-7.14.8" 77487 77578 sources."@sindresorhus/is-4.0.1" 77488 77579 sources."@szmarczak/http-timer-4.0.6" 77489 77580 sources."@types/cacheable-request-6.0.2" 77490 77581 sources."@types/http-cache-semantics-4.0.1" 77491 77582 sources."@types/keyv-3.1.2" 77492 77583 sources."@types/minimist-1.2.2" 77493 - sources."@types/node-16.3.3" 77584 + sources."@types/node-16.4.0" 77494 77585 sources."@types/normalize-package-data-2.4.1" 77495 77586 sources."@types/responselike-1.0.0" 77496 77587 sources."@types/yoga-layout-1.9.2" ··· 77525 77616 sources."quick-lru-4.0.1" 77526 77617 ]; 77527 77618 }) 77528 - sources."caniuse-lite-1.0.30001245" 77619 + sources."caniuse-lite-1.0.30001246" 77529 77620 sources."chalk-2.4.2" 77530 77621 sources."ci-info-2.0.0" 77531 77622 sources."cli-boxes-2.2.1" ··· 77562 77653 }) 77563 77654 sources."defer-to-connect-2.0.1" 77564 77655 sources."dot-prop-5.3.0" 77565 - sources."electron-to-chromium-1.3.780" 77656 + sources."electron-to-chromium-1.3.782" 77566 77657 sources."emoji-regex-8.0.0" 77567 77658 sources."emojilib-2.4.0" 77568 77659 sources."end-of-stream-1.4.4" ··· 77805 77896 src = ../../applications/video/epgstation; 77806 77897 dependencies = [ 77807 77898 sources."@babel/code-frame-7.14.5" 77808 - sources."@babel/helper-validator-identifier-7.14.5" 77899 + sources."@babel/helper-validator-identifier-7.14.8" 77809 77900 (sources."@babel/highlight-7.14.5" // { 77810 77901 dependencies = [ 77811 77902 sources."ansi-styles-3.2.1" ··· 79507 79598 }; 79508 79599 dependencies = [ 79509 79600 sources."@babel/code-frame-7.12.11" 79510 - sources."@babel/helper-validator-identifier-7.14.5" 79601 + sources."@babel/helper-validator-identifier-7.14.8" 79511 79602 (sources."@babel/highlight-7.14.5" // { 79512 79603 dependencies = [ 79513 79604 sources."chalk-2.4.2" ··· 79668 79759 }; 79669 79760 dependencies = [ 79670 79761 sources."@babel/code-frame-7.12.11" 79671 - sources."@babel/helper-validator-identifier-7.14.5" 79762 + sources."@babel/helper-validator-identifier-7.14.8" 79672 79763 (sources."@babel/highlight-7.14.5" // { 79673 79764 dependencies = [ 79674 79765 sources."chalk-2.4.2" ··· 79856 79947 sources."semver-5.7.1" 79857 79948 ]; 79858 79949 }) 79859 - sources."@babel/generator-7.14.5" 79950 + sources."@babel/generator-7.14.8" 79860 79951 sources."@babel/helper-annotate-as-pure-7.14.5" 79861 79952 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 79862 79953 (sources."@babel/helper-compilation-targets-7.14.5" // { ··· 79864 79955 sources."semver-6.3.0" 79865 79956 ]; 79866 79957 }) 79867 - sources."@babel/helper-create-class-features-plugin-7.14.6" 79958 + sources."@babel/helper-create-class-features-plugin-7.14.8" 79868 79959 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 79869 79960 (sources."@babel/helper-define-polyfill-provider-0.2.3" // { 79870 79961 dependencies = [ ··· 79877 79968 sources."@babel/helper-hoist-variables-7.14.5" 79878 79969 sources."@babel/helper-member-expression-to-functions-7.14.7" 79879 79970 sources."@babel/helper-module-imports-7.14.5" 79880 - sources."@babel/helper-module-transforms-7.14.5" 79971 + sources."@babel/helper-module-transforms-7.14.8" 79881 79972 sources."@babel/helper-optimise-call-expression-7.14.5" 79882 79973 sources."@babel/helper-plugin-utils-7.14.5" 79883 79974 sources."@babel/helper-remap-async-to-generator-7.14.5" 79884 79975 sources."@babel/helper-replace-supers-7.14.5" 79885 - sources."@babel/helper-simple-access-7.14.5" 79976 + sources."@babel/helper-simple-access-7.14.8" 79886 79977 sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 79887 79978 sources."@babel/helper-split-export-declaration-7.14.5" 79888 - sources."@babel/helper-validator-identifier-7.14.5" 79979 + sources."@babel/helper-validator-identifier-7.14.8" 79889 79980 sources."@babel/helper-validator-option-7.14.5" 79890 79981 sources."@babel/helper-wrap-function-7.14.5" 79891 - sources."@babel/helpers-7.14.6" 79982 + sources."@babel/helpers-7.14.8" 79892 79983 (sources."@babel/highlight-7.14.5" // { 79893 79984 dependencies = [ 79894 79985 sources."chalk-2.4.2" 79895 79986 ]; 79896 79987 }) 79897 - sources."@babel/parser-7.14.7" 79988 + sources."@babel/parser-7.14.8" 79898 79989 sources."@babel/plugin-proposal-async-generator-functions-7.14.7" 79899 79990 sources."@babel/plugin-proposal-class-properties-7.12.13" 79900 79991 sources."@babel/plugin-proposal-dynamic-import-7.14.5" ··· 79976 80067 }) 79977 80068 sources."@babel/preset-modules-0.1.4" 79978 80069 sources."@babel/preset-typescript-7.12.17" 79979 - sources."@babel/runtime-7.14.6" 80070 + sources."@babel/runtime-7.14.8" 79980 80071 sources."@babel/template-7.14.5" 79981 - sources."@babel/traverse-7.14.7" 79982 - sources."@babel/types-7.14.5" 80072 + sources."@babel/traverse-7.14.8" 80073 + sources."@babel/types-7.14.8" 79983 80074 sources."@expo/apple-utils-0.0.0-alpha.20" 79984 80075 sources."@expo/bunyan-4.0.0" 79985 80076 sources."@expo/config-5.0.5" ··· 80399 80490 }) 80400 80491 sources."camelcase-5.3.1" 80401 80492 sources."caniuse-api-3.0.0" 80402 - sources."caniuse-lite-1.0.30001245" 80493 + sources."caniuse-lite-1.0.30001246" 80403 80494 sources."caseless-0.12.0" 80404 80495 (sources."chalk-4.1.1" // { 80405 80496 dependencies = [ ··· 80668 80759 sources."ecc-jsbn-0.1.2" 80669 80760 sources."ee-first-1.1.1" 80670 80761 sources."ejs-2.7.4" 80671 - sources."electron-to-chromium-1.3.780" 80762 + sources."electron-to-chromium-1.3.782" 80672 80763 (sources."elliptic-6.5.4" // { 80673 80764 dependencies = [ 80674 80765 sources."bn.js-4.12.0" ··· 81741 81832 ]; 81742 81833 }) 81743 81834 sources."ripemd160-2.0.2" 81744 - sources."rollup-2.53.2" 81835 + sources."rollup-2.53.3" 81745 81836 (sources."rollup-plugin-terser-7.0.2" // { 81746 81837 dependencies = [ 81747 81838 sources."commander-2.20.3" ··· 82274 82365 sources."workbox-broadcast-update-6.1.5" 82275 82366 (sources."workbox-build-6.1.5" // { 82276 82367 dependencies = [ 82277 - (sources."@babel/core-7.14.6" // { 82368 + (sources."@babel/core-7.14.8" // { 82278 82369 dependencies = [ 82279 82370 sources."source-map-0.5.7" 82280 82371 ]; ··· 82390 82481 dependencies = [ 82391 82482 sources."@babel/code-frame-7.14.5" 82392 82483 sources."@babel/compat-data-7.14.7" 82393 - sources."@babel/core-7.14.6" 82394 - sources."@babel/generator-7.14.5" 82484 + sources."@babel/core-7.14.8" 82485 + sources."@babel/generator-7.14.8" 82395 82486 sources."@babel/helper-annotate-as-pure-7.14.5" 82396 82487 sources."@babel/helper-compilation-targets-7.14.5" 82397 82488 sources."@babel/helper-function-name-7.14.5" ··· 82399 82490 sources."@babel/helper-hoist-variables-7.14.5" 82400 82491 sources."@babel/helper-member-expression-to-functions-7.14.7" 82401 82492 sources."@babel/helper-module-imports-7.14.5" 82402 - sources."@babel/helper-module-transforms-7.14.5" 82493 + sources."@babel/helper-module-transforms-7.14.8" 82403 82494 sources."@babel/helper-optimise-call-expression-7.14.5" 82404 82495 sources."@babel/helper-plugin-utils-7.14.5" 82405 82496 sources."@babel/helper-replace-supers-7.14.5" 82406 - sources."@babel/helper-simple-access-7.14.5" 82497 + sources."@babel/helper-simple-access-7.14.8" 82407 82498 sources."@babel/helper-split-export-declaration-7.14.5" 82408 - sources."@babel/helper-validator-identifier-7.14.5" 82499 + sources."@babel/helper-validator-identifier-7.14.8" 82409 82500 sources."@babel/helper-validator-option-7.14.5" 82410 - sources."@babel/helpers-7.14.6" 82501 + sources."@babel/helpers-7.14.8" 82411 82502 sources."@babel/highlight-7.14.5" 82412 - sources."@babel/parser-7.14.7" 82503 + sources."@babel/parser-7.14.8" 82413 82504 sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 82414 82505 sources."@babel/plugin-syntax-jsx-7.14.5" 82415 82506 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 82417 82508 sources."@babel/plugin-transform-parameters-7.14.5" 82418 82509 sources."@babel/plugin-transform-react-jsx-7.14.5" 82419 82510 sources."@babel/template-7.14.5" 82420 - sources."@babel/traverse-7.14.7" 82421 - sources."@babel/types-7.14.5" 82511 + sources."@babel/traverse-7.14.8" 82512 + sources."@babel/types-7.14.8" 82422 82513 sources."@types/minimist-1.2.2" 82423 - sources."@types/node-16.3.3" 82514 + sources."@types/node-16.4.0" 82424 82515 sources."@types/normalize-package-data-2.4.1" 82425 82516 sources."@types/yauzl-2.9.2" 82426 82517 sources."@types/yoga-layout-1.9.2" ··· 82447 82538 sources."callsites-2.0.0" 82448 82539 sources."camelcase-5.3.1" 82449 82540 sources."camelcase-keys-6.2.2" 82450 - sources."caniuse-lite-1.0.30001245" 82541 + sources."caniuse-lite-1.0.30001246" 82451 82542 sources."chalk-2.4.2" 82452 82543 sources."chownr-1.1.4" 82453 82544 sources."ci-info-2.0.0" ··· 82472 82563 }) 82473 82564 sources."delay-5.0.0" 82474 82565 sources."devtools-protocol-0.0.869402" 82475 - sources."electron-to-chromium-1.3.780" 82566 + sources."electron-to-chromium-1.3.782" 82476 82567 sources."emoji-regex-8.0.0" 82477 82568 sources."end-of-stream-1.4.4" 82478 82569 sources."error-ex-1.3.2" ··· 82664 82755 }; 82665 82756 dependencies = [ 82666 82757 sources."@babel/code-frame-7.14.5" 82667 - sources."@babel/generator-7.14.5" 82758 + sources."@babel/generator-7.14.8" 82668 82759 sources."@babel/helper-function-name-7.14.5" 82669 82760 sources."@babel/helper-get-function-arity-7.14.5" 82670 82761 sources."@babel/helper-hoist-variables-7.14.5" 82671 82762 sources."@babel/helper-split-export-declaration-7.14.5" 82672 - sources."@babel/helper-validator-identifier-7.14.5" 82763 + sources."@babel/helper-validator-identifier-7.14.8" 82673 82764 sources."@babel/highlight-7.14.5" 82674 - sources."@babel/parser-7.14.7" 82765 + sources."@babel/parser-7.14.8" 82675 82766 sources."@babel/template-7.14.5" 82676 - sources."@babel/traverse-7.14.7" 82677 - sources."@babel/types-7.14.5" 82767 + sources."@babel/traverse-7.14.8" 82768 + sources."@babel/types-7.14.8" 82678 82769 (sources."@heroku-cli/color-1.1.14" // { 82679 82770 dependencies = [ 82680 82771 sources."ansi-regex-4.1.0" ··· 83292 83383 sources."@google-cloud/precise-date-2.0.3" 83293 83384 sources."@google-cloud/projectify-2.1.0" 83294 83385 sources."@google-cloud/promisify-2.0.3" 83295 - (sources."@google-cloud/pubsub-2.16.0" // { 83386 + (sources."@google-cloud/pubsub-2.16.1" // { 83296 83387 dependencies = [ 83297 83388 sources."google-auth-library-7.3.0" 83298 83389 ]; ··· 83326 83417 sources."@types/json-schema-7.0.8" 83327 83418 sources."@types/long-4.0.1" 83328 83419 sources."@types/minimatch-3.0.5" 83329 - sources."@types/node-16.3.3" 83420 + sources."@types/node-16.4.0" 83330 83421 sources."JSONStream-1.3.5" 83331 83422 sources."abbrev-1.1.1" 83332 83423 sources."abort-controller-3.0.0" ··· 83542 83633 ]; 83543 83634 }) 83544 83635 sources."duplexer3-0.1.4" 83545 - sources."duplexify-4.1.1" 83636 + sources."duplexify-4.1.2" 83546 83637 sources."ecc-jsbn-0.1.2" 83547 83638 sources."ecdsa-sig-formatter-1.0.11" 83548 83639 sources."ee-first-1.1.1" ··· 84252 84343 }; 84253 84344 dependencies = [ 84254 84345 sources."@babel/code-frame-7.14.5" 84255 - sources."@babel/helper-validator-identifier-7.14.5" 84346 + sources."@babel/helper-validator-identifier-7.14.8" 84256 84347 (sources."@babel/highlight-7.14.5" // { 84257 84348 dependencies = [ 84258 84349 sources."ansi-styles-3.2.1" ··· 84432 84523 dependencies = [ 84433 84524 sources."@types/atob-2.1.2" 84434 84525 sources."@types/inquirer-6.5.0" 84435 - sources."@types/node-16.3.3" 84526 + sources."@types/node-16.4.0" 84436 84527 sources."@types/through-0.0.30" 84437 84528 sources."ajv-6.12.6" 84438 84529 sources."ansi-escapes-4.3.2" ··· 85119 85210 gatsby-cli = nodeEnv.buildNodePackage { 85120 85211 name = "gatsby-cli"; 85121 85212 packageName = "gatsby-cli"; 85122 - version = "3.9.0"; 85213 + version = "3.10.0"; 85123 85214 src = fetchurl { 85124 - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.9.0.tgz"; 85125 - sha512 = "mfd+e5dNzQ8CkjggrYw3PkQwizJmK1+hR6VWmstDkc5+h1c6xFFNFfauexllDFi8H1SMokAEV4TQRDYDilpByw=="; 85215 + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.10.0.tgz"; 85216 + sha512 = "RgHTA2qdxhdUugoi+S6BCv6LFDYxuV7P8QfbG0QRmmIAybtmpgfse6oLspWgtXwR4liRDZh/hRgwVA4y48JmlA=="; 85126 85217 }; 85127 85218 dependencies = [ 85128 85219 (sources."@ardatan/aggregate-error-0.0.6" // { ··· 85132 85223 }) 85133 85224 sources."@babel/code-frame-7.14.5" 85134 85225 sources."@babel/compat-data-7.14.7" 85135 - (sources."@babel/core-7.14.6" // { 85226 + (sources."@babel/core-7.14.8" // { 85136 85227 dependencies = [ 85137 85228 sources."semver-6.3.0" 85138 85229 sources."source-map-0.5.7" 85139 85230 ]; 85140 85231 }) 85141 - (sources."@babel/generator-7.14.5" // { 85232 + (sources."@babel/generator-7.14.8" // { 85142 85233 dependencies = [ 85143 85234 sources."source-map-0.5.7" 85144 85235 ]; ··· 85154 85245 sources."@babel/helper-hoist-variables-7.14.5" 85155 85246 sources."@babel/helper-member-expression-to-functions-7.14.7" 85156 85247 sources."@babel/helper-module-imports-7.14.5" 85157 - sources."@babel/helper-module-transforms-7.14.5" 85248 + sources."@babel/helper-module-transforms-7.14.8" 85158 85249 sources."@babel/helper-optimise-call-expression-7.14.5" 85159 85250 sources."@babel/helper-plugin-utils-7.14.5" 85160 85251 sources."@babel/helper-replace-supers-7.14.5" 85161 - sources."@babel/helper-simple-access-7.14.5" 85252 + sources."@babel/helper-simple-access-7.14.8" 85162 85253 sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 85163 85254 sources."@babel/helper-split-export-declaration-7.14.5" 85164 - sources."@babel/helper-validator-identifier-7.14.5" 85255 + sources."@babel/helper-validator-identifier-7.14.8" 85165 85256 sources."@babel/helper-validator-option-7.14.5" 85166 - sources."@babel/helpers-7.14.6" 85257 + sources."@babel/helpers-7.14.8" 85167 85258 (sources."@babel/highlight-7.14.5" // { 85168 85259 dependencies = [ 85169 85260 sources."chalk-2.4.2" 85170 85261 ]; 85171 85262 }) 85172 - sources."@babel/parser-7.14.7" 85263 + sources."@babel/parser-7.14.8" 85173 85264 sources."@babel/plugin-proposal-object-rest-spread-7.10.4" 85174 85265 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 85175 85266 sources."@babel/plugin-syntax-jsx-7.14.5" ··· 85177 85268 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 85178 85269 sources."@babel/plugin-transform-parameters-7.14.5" 85179 85270 sources."@babel/plugin-transform-react-jsx-7.14.5" 85180 - sources."@babel/runtime-7.14.6" 85181 - sources."@babel/standalone-7.14.7" 85271 + sources."@babel/runtime-7.14.8" 85272 + sources."@babel/standalone-7.14.8" 85182 85273 sources."@babel/template-7.14.5" 85183 - sources."@babel/traverse-7.14.7" 85184 - sources."@babel/types-7.14.5" 85274 + sources."@babel/traverse-7.14.8" 85275 + sources."@babel/types-7.14.8" 85185 85276 sources."@graphql-tools/schema-7.1.5" 85186 85277 sources."@graphql-tools/utils-7.10.0" 85187 85278 sources."@hapi/address-2.1.4" ··· 85217 85308 sources."@types/istanbul-lib-report-3.0.0" 85218 85309 sources."@types/istanbul-reports-1.1.2" 85219 85310 sources."@types/json-patch-0.0.30" 85220 - sources."@types/node-16.3.3" 85311 + sources."@types/node-16.4.0" 85221 85312 sources."@types/node-fetch-2.5.11" 85222 85313 sources."@types/unist-2.0.6" 85223 85314 sources."@types/yargs-15.0.14" ··· 85284 85375 sources."call-bind-1.0.2" 85285 85376 sources."camel-case-4.1.2" 85286 85377 sources."camelcase-5.3.1" 85287 - sources."caniuse-lite-1.0.30001245" 85378 + sources."caniuse-lite-1.0.30001246" 85288 85379 sources."ccount-1.1.0" 85289 85380 (sources."chalk-4.1.1" // { 85290 85381 dependencies = [ ··· 85345 85436 sources."cookie-0.4.0" 85346 85437 sources."cookie-signature-1.0.6" 85347 85438 sources."cors-2.8.5" 85348 - sources."create-gatsby-1.9.0" 85439 + sources."create-gatsby-1.10.0" 85349 85440 (sources."cross-spawn-6.0.5" // { 85350 85441 dependencies = [ 85351 85442 sources."semver-5.7.1" ··· 85380 85471 sources."dotenv-8.6.0" 85381 85472 sources."duplexer3-0.1.4" 85382 85473 sources."ee-first-1.1.1" 85383 - sources."electron-to-chromium-1.3.780" 85474 + sources."electron-to-chromium-1.3.782" 85384 85475 sources."emoji-regex-7.0.3" 85385 85476 sources."encodeurl-1.0.2" 85386 85477 sources."end-of-stream-1.4.4" ··· 85392 85483 sources."escape-string-regexp-1.0.5" 85393 85484 sources."estree-util-is-identifier-name-1.1.0" 85394 85485 sources."etag-1.8.1" 85395 - (sources."execa-3.4.0" // { 85486 + (sources."execa-5.1.1" // { 85396 85487 dependencies = [ 85397 85488 sources."cross-spawn-7.0.3" 85398 - sources."get-stream-5.2.0" 85489 + sources."get-stream-6.0.1" 85399 85490 sources."is-stream-2.0.0" 85400 85491 sources."npm-run-path-4.0.1" 85401 - sources."p-finally-2.0.1" 85402 85492 sources."path-key-3.1.1" 85403 85493 sources."shebang-command-2.0.0" 85404 85494 sources."shebang-regex-3.0.0" ··· 85433 85523 }) 85434 85524 sources."fast-copy-2.1.1" 85435 85525 sources."figures-3.2.0" 85436 - sources."file-type-16.5.1" 85526 + sources."file-type-16.5.2" 85437 85527 sources."fill-range-7.0.1" 85438 85528 sources."filter-obj-1.1.0" 85439 85529 (sources."finalhandler-1.1.2" // { ··· 85452 85542 sources."fs.realpath-1.0.0" 85453 85543 sources."fsevents-2.3.2" 85454 85544 sources."function-bind-1.1.1" 85455 - sources."gatsby-core-utils-2.9.0" 85456 - (sources."gatsby-recipes-0.20.0" // { 85545 + sources."gatsby-core-utils-2.10.0" 85546 + (sources."gatsby-recipes-0.21.0" // { 85457 85547 dependencies = [ 85458 - sources."cross-spawn-7.0.3" 85459 - sources."execa-4.1.0" 85460 - sources."get-stream-5.2.0" 85461 - sources."is-stream-2.0.0" 85462 - sources."npm-run-path-4.0.1" 85463 - sources."path-key-3.1.1" 85464 - sources."shebang-command-2.0.0" 85465 - sources."shebang-regex-3.0.0" 85466 85548 sources."strip-ansi-6.0.0" 85467 - sources."which-2.0.2" 85468 85549 ]; 85469 85550 }) 85470 - sources."gatsby-telemetry-2.9.0" 85551 + sources."gatsby-telemetry-2.10.0" 85471 85552 sources."gensync-1.0.0-beta.2" 85472 85553 sources."get-caller-file-2.0.5" 85473 85554 sources."get-intrinsic-1.1.1" ··· 85498 85579 sources."inherits-2.0.3" 85499 85580 ]; 85500 85581 }) 85501 - sources."human-signals-1.1.1" 85582 + sources."human-signals-2.1.0" 85502 85583 sources."iconv-lite-0.4.24" 85503 85584 sources."ieee754-1.2.1" 85504 85585 sources."import-lazy-2.1.0" ··· 85661 85742 sources."path-key-2.0.1" 85662 85743 sources."path-parse-1.0.7" 85663 85744 sources."path-to-regexp-0.1.7" 85664 - sources."peek-readable-4.0.0" 85745 + sources."peek-readable-3.1.4" 85665 85746 sources."picomatch-2.3.0" 85666 85747 sources."pkg-dir-4.2.0" 85667 85748 sources."prepend-http-2.0.0" ··· 85791 85872 sources."strip-final-newline-2.0.0" 85792 85873 sources."strip-indent-3.0.0" 85793 85874 sources."strip-json-comments-2.0.1" 85794 - sources."strtok3-6.2.2" 85875 + sources."strtok3-6.1.3" 85795 85876 sources."style-to-object-0.3.0" 85796 85877 sources."supports-color-5.5.0" 85797 85878 sources."term-size-2.2.1" ··· 85801 85882 sources."to-readable-stream-1.0.0" 85802 85883 sources."to-regex-range-5.0.1" 85803 85884 sources."toidentifier-1.0.0" 85804 - sources."token-types-2.1.1" 85885 + sources."token-types-3.1.0" 85805 85886 sources."trim-0.0.1" 85806 85887 sources."trim-trailing-lines-1.1.4" 85807 85888 sources."trough-1.0.5" ··· 86156 86237 }; 86157 86238 dependencies = [ 86158 86239 sources."@babel/code-frame-7.14.5" 86159 - sources."@babel/helper-validator-identifier-7.14.5" 86240 + sources."@babel/helper-validator-identifier-7.14.8" 86160 86241 (sources."@babel/highlight-7.14.5" // { 86161 86242 dependencies = [ 86162 86243 sources."ansi-styles-3.2.1" ··· 86513 86594 dependencies = [ 86514 86595 sources."@ardatan/aggregate-error-0.0.6" 86515 86596 sources."@babel/code-frame-7.14.5" 86516 - sources."@babel/helper-validator-identifier-7.14.5" 86597 + sources."@babel/helper-validator-identifier-7.14.8" 86517 86598 (sources."@babel/highlight-7.14.5" // { 86518 86599 dependencies = [ 86519 86600 sources."ansi-styles-3.2.1" ··· 86607 86688 sources."@nodelib/fs.walk-1.2.8" 86608 86689 sources."@sindresorhus/is-0.14.0" 86609 86690 sources."@szmarczak/http-timer-1.1.2" 86610 - sources."@types/node-16.3.3" 86691 + sources."@types/node-16.4.0" 86611 86692 sources."@types/parse-json-4.0.0" 86612 86693 sources."@types/websocket-1.0.2" 86613 86694 sources."abort-controller-3.0.0" ··· 89693 89774 sources."async-mutex-0.1.4" 89694 89775 sources."asynckit-0.4.0" 89695 89776 sources."atob-2.1.2" 89696 - (sources."aws-sdk-2.949.0" // { 89777 + (sources."aws-sdk-2.950.0" // { 89697 89778 dependencies = [ 89698 89779 sources."sax-1.2.1" 89699 89780 sources."uuid-3.3.2" ··· 90410 90491 sha512 = "sxKt7h0vzCd+3Y81Ey2qinupL6DpRSZJclS04ugHDNmRUXGzqicMJ6iwayhSA0S0DwwX30c5ozyUthr1QKF6uw=="; 90411 90492 }; 90412 90493 dependencies = [ 90413 - sources."@babel/parser-7.14.7" 90494 + sources."@babel/parser-7.14.8" 90414 90495 sources."argparse-1.0.10" 90415 90496 sources."bluebird-3.7.2" 90416 90497 sources."catharsis-0.9.0" ··· 91717 91798 sources."@types/component-emitter-1.2.10" 91718 91799 sources."@types/cookie-0.4.1" 91719 91800 sources."@types/cors-2.8.12" 91720 - sources."@types/node-16.3.3" 91801 + sources."@types/node-16.4.0" 91721 91802 sources."accepts-1.3.7" 91722 91803 sources."ansi-regex-5.0.0" 91723 91804 sources."ansi-styles-4.3.0" ··· 92739 92820 }; 92740 92821 dependencies = [ 92741 92822 sources."@babel/code-frame-7.14.5" 92742 - sources."@babel/helper-validator-identifier-7.14.5" 92823 + sources."@babel/helper-validator-identifier-7.14.8" 92743 92824 (sources."@babel/highlight-7.14.5" // { 92744 92825 dependencies = [ 92745 92826 sources."ansi-styles-3.2.1" ··· 92861 92942 ]; 92862 92943 }) 92863 92944 sources."@octokit/graphql-4.6.4" 92864 - sources."@octokit/openapi-types-8.3.0" 92945 + sources."@octokit/openapi-types-9.0.0" 92865 92946 sources."@octokit/plugin-enterprise-rest-6.0.1" 92866 92947 sources."@octokit/plugin-paginate-rest-2.14.0" 92867 92948 sources."@octokit/plugin-request-log-1.0.4" 92868 - sources."@octokit/plugin-rest-endpoint-methods-5.4.1" 92949 + sources."@octokit/plugin-rest-endpoint-methods-5.4.2" 92869 92950 (sources."@octokit/request-5.6.0" // { 92870 92951 dependencies = [ 92871 92952 sources."is-plain-object-5.0.0" 92872 92953 ]; 92873 92954 }) 92874 92955 sources."@octokit/request-error-2.1.0" 92875 - sources."@octokit/rest-18.6.7" 92876 - sources."@octokit/types-6.19.0" 92956 + sources."@octokit/rest-18.6.8" 92957 + sources."@octokit/types-6.19.1" 92877 92958 sources."@tootallnate/once-1.1.2" 92878 92959 sources."@types/minimatch-3.0.5" 92879 92960 sources."@types/minimist-1.2.2" ··· 94404 94485 dependencies = [ 94405 94486 sources."@babel/code-frame-7.14.5" 94406 94487 sources."@babel/compat-data-7.14.7" 94407 - sources."@babel/core-7.14.6" 94408 - sources."@babel/generator-7.14.5" 94488 + sources."@babel/core-7.14.8" 94489 + sources."@babel/generator-7.14.8" 94409 94490 sources."@babel/helper-annotate-as-pure-7.14.5" 94410 94491 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 94411 94492 sources."@babel/helper-compilation-targets-7.14.5" 94412 - sources."@babel/helper-create-class-features-plugin-7.14.6" 94493 + sources."@babel/helper-create-class-features-plugin-7.14.8" 94413 94494 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 94414 94495 sources."@babel/helper-define-polyfill-provider-0.2.3" 94415 94496 sources."@babel/helper-explode-assignable-expression-7.14.5" ··· 94418 94499 sources."@babel/helper-hoist-variables-7.14.5" 94419 94500 sources."@babel/helper-member-expression-to-functions-7.14.7" 94420 94501 sources."@babel/helper-module-imports-7.14.5" 94421 - sources."@babel/helper-module-transforms-7.14.5" 94502 + sources."@babel/helper-module-transforms-7.14.8" 94422 94503 sources."@babel/helper-optimise-call-expression-7.14.5" 94423 94504 sources."@babel/helper-plugin-utils-7.14.5" 94424 94505 sources."@babel/helper-remap-async-to-generator-7.14.5" 94425 94506 sources."@babel/helper-replace-supers-7.14.5" 94426 - sources."@babel/helper-simple-access-7.14.5" 94507 + sources."@babel/helper-simple-access-7.14.8" 94427 94508 sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 94428 94509 sources."@babel/helper-split-export-declaration-7.14.5" 94429 - sources."@babel/helper-validator-identifier-7.14.5" 94510 + sources."@babel/helper-validator-identifier-7.14.8" 94430 94511 sources."@babel/helper-validator-option-7.14.5" 94431 94512 sources."@babel/helper-wrap-function-7.14.5" 94432 - sources."@babel/helpers-7.14.6" 94513 + sources."@babel/helpers-7.14.8" 94433 94514 (sources."@babel/highlight-7.14.5" // { 94434 94515 dependencies = [ 94435 94516 sources."chalk-2.4.2" 94436 94517 ]; 94437 94518 }) 94438 - sources."@babel/parser-7.14.7" 94519 + sources."@babel/parser-7.14.8" 94439 94520 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 94440 94521 sources."@babel/plugin-external-helpers-7.8.3" 94441 94522 sources."@babel/plugin-proposal-async-generator-functions-7.14.7" ··· 94502 94583 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 94503 94584 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 94504 94585 sources."@babel/plugin-transform-unicode-regex-7.14.5" 94505 - sources."@babel/preset-env-7.14.7" 94586 + sources."@babel/preset-env-7.14.8" 94506 94587 sources."@babel/preset-modules-0.1.4" 94507 94588 sources."@babel/preset-stage-2-7.8.3" 94508 - sources."@babel/runtime-7.14.6" 94589 + sources."@babel/runtime-7.14.8" 94509 94590 sources."@babel/template-7.14.5" 94510 - sources."@babel/traverse-7.14.7" 94511 - sources."@babel/types-7.14.5" 94591 + sources."@babel/traverse-7.14.8" 94592 + sources."@babel/types-7.14.8" 94512 94593 sources."@cnakazawa/watch-1.0.4" 94513 94594 sources."@comandeer/babel-plugin-banner-5.0.0" 94514 94595 sources."@istanbuljs/load-nyc-config-1.1.0" ··· 94529 94610 sources."@types/istanbul-lib-report-3.0.0" 94530 94611 sources."@types/istanbul-reports-1.1.2" 94531 94612 sources."@types/json-schema-7.0.8" 94532 - sources."@types/node-16.3.3" 94613 + sources."@types/node-16.4.0" 94533 94614 sources."@types/normalize-package-data-2.4.1" 94534 94615 sources."@types/resolve-0.0.8" 94535 94616 sources."@types/yargs-15.0.14" ··· 94702 94783 sources."cached-path-relative-1.0.2" 94703 94784 sources."call-bind-1.0.2" 94704 94785 sources."camelcase-5.3.1" 94705 - sources."caniuse-lite-1.0.30001245" 94786 + sources."caniuse-lite-1.0.30001246" 94706 94787 sources."capture-exit-2.0.0" 94707 94788 sources."caseless-0.12.0" 94708 94789 (sources."chalk-3.0.0" // { ··· 94826 94907 sources."duplexer2-0.1.4" 94827 94908 sources."duplexify-3.7.1" 94828 94909 sources."ecc-jsbn-0.1.2" 94829 - sources."electron-to-chromium-1.3.780" 94910 + sources."electron-to-chromium-1.3.782" 94830 94911 (sources."elliptic-6.5.4" // { 94831 94912 dependencies = [ 94832 94913 sources."bn.js-4.12.0" ··· 96074 96155 }; 96075 96156 dependencies = [ 96076 96157 sources."@braintree/sanitize-url-3.1.0" 96077 - sources."@types/node-16.3.3" 96158 + sources."@types/node-16.4.0" 96078 96159 sources."@types/yauzl-2.9.2" 96079 96160 sources."agent-base-6.0.2" 96080 96161 sources."ansi-styles-4.3.0" ··· 96732 96813 netlify-cli = nodeEnv.buildNodePackage { 96733 96814 name = "netlify-cli"; 96734 96815 packageName = "netlify-cli"; 96735 - version = "4.4.4"; 96816 + version = "5.0.0"; 96736 96817 src = fetchurl { 96737 - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-4.4.4.tgz"; 96738 - sha512 = "vDyRF0MxUCccnk/nttQtWSE+KrcHgqjT0s/SyK7Hw06dAKg9X5kDyvDXjHQl2Dmc8Nc68050xc9ql36xUid2dQ=="; 96818 + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-5.0.0.tgz"; 96819 + sha512 = "bOXs3BRJ/3wC9aAIMw3r7IwQFDSDz+BG69nERTH11YqFLP45SLpro1lhGUIY4M28AdiX6DbHdC3zBZb2+4QONw=="; 96739 96820 }; 96740 96821 dependencies = [ 96741 96822 sources."@babel/code-frame-7.14.5" 96742 96823 sources."@babel/compat-data-7.14.7" 96743 - (sources."@babel/core-7.14.6" // { 96824 + (sources."@babel/core-7.14.8" // { 96744 96825 dependencies = [ 96745 96826 sources."semver-6.3.0" 96746 96827 ]; 96747 96828 }) 96748 - sources."@babel/generator-7.14.5" 96829 + sources."@babel/generator-7.14.8" 96749 96830 sources."@babel/helper-annotate-as-pure-7.14.5" 96750 96831 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 96751 96832 (sources."@babel/helper-compilation-targets-7.14.5" // { ··· 96753 96834 sources."semver-6.3.0" 96754 96835 ]; 96755 96836 }) 96756 - sources."@babel/helper-create-class-features-plugin-7.14.6" 96837 + sources."@babel/helper-create-class-features-plugin-7.14.8" 96757 96838 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 96758 96839 (sources."@babel/helper-define-polyfill-provider-0.2.3" // { 96759 96840 dependencies = [ ··· 96766 96847 sources."@babel/helper-hoist-variables-7.14.5" 96767 96848 sources."@babel/helper-member-expression-to-functions-7.14.7" 96768 96849 sources."@babel/helper-module-imports-7.14.5" 96769 - sources."@babel/helper-module-transforms-7.14.5" 96850 + sources."@babel/helper-module-transforms-7.14.8" 96770 96851 sources."@babel/helper-optimise-call-expression-7.14.5" 96771 96852 sources."@babel/helper-plugin-utils-7.14.5" 96772 96853 sources."@babel/helper-remap-async-to-generator-7.14.5" 96773 96854 sources."@babel/helper-replace-supers-7.14.5" 96774 - sources."@babel/helper-simple-access-7.14.5" 96855 + sources."@babel/helper-simple-access-7.14.8" 96775 96856 sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 96776 96857 sources."@babel/helper-split-export-declaration-7.14.5" 96777 - sources."@babel/helper-validator-identifier-7.14.5" 96858 + sources."@babel/helper-validator-identifier-7.14.8" 96778 96859 sources."@babel/helper-validator-option-7.14.5" 96779 96860 sources."@babel/helper-wrap-function-7.14.5" 96780 - sources."@babel/helpers-7.14.6" 96861 + sources."@babel/helpers-7.14.8" 96781 96862 (sources."@babel/highlight-7.14.5" // { 96782 96863 dependencies = [ 96783 96864 sources."ansi-styles-3.2.1" ··· 96787 96868 sources."supports-color-5.5.0" 96788 96869 ]; 96789 96870 }) 96790 - sources."@babel/parser-7.14.7" 96871 + sources."@babel/parser-7.14.8" 96791 96872 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 96792 96873 sources."@babel/plugin-proposal-async-generator-functions-7.14.7" 96793 96874 sources."@babel/plugin-proposal-class-properties-7.14.5" ··· 96850 96931 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 96851 96932 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 96852 96933 sources."@babel/plugin-transform-unicode-regex-7.14.5" 96853 - (sources."@babel/preset-env-7.14.7" // { 96934 + (sources."@babel/preset-env-7.14.8" // { 96854 96935 dependencies = [ 96855 96936 sources."semver-6.3.0" 96856 96937 ]; 96857 96938 }) 96858 96939 sources."@babel/preset-modules-0.1.4" 96859 - sources."@babel/runtime-7.14.6" 96940 + sources."@babel/runtime-7.14.8" 96860 96941 sources."@babel/template-7.14.5" 96861 - sources."@babel/traverse-7.14.7" 96862 - sources."@babel/types-7.14.5" 96942 + sources."@babel/traverse-7.14.8" 96943 + sources."@babel/types-7.14.8" 96863 96944 sources."@bugsnag/browser-7.10.5" 96864 96945 sources."@bugsnag/core-7.10.0" 96865 96946 sources."@bugsnag/cuid-3.0.0" ··· 96869 96950 sources."@dabh/diagnostics-2.0.2" 96870 96951 sources."@jest/types-24.9.0" 96871 96952 sources."@mrmlnc/readdir-enhanced-2.2.1" 96872 - (sources."@netlify/build-15.11.5" // { 96953 + (sources."@netlify/build-16.0.1" // { 96873 96954 dependencies = [ 96874 96955 sources."ansi-styles-4.3.0" 96875 96956 sources."boxen-4.2.0" ··· 96891 96972 sources."slash-3.0.0" 96892 96973 ]; 96893 96974 }) 96894 - (sources."@netlify/config-12.6.0" // { 96975 + (sources."@netlify/config-13.0.0" // { 96895 96976 dependencies = [ 96896 96977 sources."ansi-styles-4.3.0" 96897 96978 sources."chalk-3.0.0" ··· 96927 97008 ]; 96928 97009 }) 96929 97010 sources."@netlify/plugins-list-2.19.3" 96930 - sources."@netlify/routing-local-proxy-0.30.2" 97011 + sources."@netlify/routing-local-proxy-0.31.0" 96931 97012 (sources."@netlify/run-utils-1.0.7" // { 96932 97013 dependencies = [ 96933 97014 sources."execa-3.4.0" ··· 97060 97141 ]; 97061 97142 }) 97062 97143 sources."@octokit/graphql-4.6.4" 97063 - sources."@octokit/openapi-types-8.3.0" 97144 + sources."@octokit/openapi-types-9.0.0" 97064 97145 sources."@octokit/plugin-paginate-rest-2.14.0" 97065 97146 sources."@octokit/plugin-request-log-1.0.4" 97066 - sources."@octokit/plugin-rest-endpoint-methods-5.4.1" 97147 + sources."@octokit/plugin-rest-endpoint-methods-5.4.2" 97067 97148 (sources."@octokit/request-5.6.0" // { 97068 97149 dependencies = [ 97069 97150 sources."is-plain-object-5.0.0" 97070 97151 ]; 97071 97152 }) 97072 97153 sources."@octokit/request-error-2.1.0" 97073 - sources."@octokit/rest-18.6.7" 97074 - sources."@octokit/types-6.19.0" 97154 + sources."@octokit/rest-18.6.8" 97155 + sources."@octokit/types-6.19.1" 97075 97156 sources."@rollup/plugin-babel-5.3.0" 97076 97157 (sources."@rollup/plugin-commonjs-18.1.0" // { 97077 97158 dependencies = [ ··· 97108 97189 sources."@types/istanbul-reports-1.1.2" 97109 97190 sources."@types/keyv-3.1.2" 97110 97191 sources."@types/minimatch-3.0.5" 97111 - sources."@types/node-16.3.3" 97192 + sources."@types/node-16.4.0" 97112 97193 sources."@types/node-fetch-2.5.11" 97113 97194 sources."@types/normalize-package-data-2.4.1" 97114 97195 sources."@types/resolve-1.17.1" ··· 97267 97348 sources."call-me-maybe-1.0.1" 97268 97349 sources."callsite-1.0.0" 97269 97350 sources."camelcase-5.3.1" 97270 - sources."caniuse-lite-1.0.30001245" 97351 + sources."caniuse-lite-1.0.30001246" 97271 97352 sources."cardinal-2.1.1" 97272 97353 (sources."chalk-4.1.1" // { 97273 97354 dependencies = [ ··· 97533 97614 }) 97534 97615 sources."duplexer3-0.1.4" 97535 97616 sources."ee-first-1.1.1" 97536 - sources."electron-to-chromium-1.3.780" 97617 + sources."electron-to-chromium-1.3.782" 97537 97618 sources."elegant-spinner-1.0.1" 97538 97619 sources."elf-cam-0.1.1" 97539 97620 sources."emoji-regex-8.0.0" ··· 98351 98432 sources."reusify-1.0.4" 98352 98433 sources."rfdc-1.3.0" 98353 98434 sources."rimraf-3.0.2" 98354 - sources."rollup-2.53.2" 98435 + sources."rollup-2.53.3" 98355 98436 (sources."rollup-plugin-inject-3.0.2" // { 98356 98437 dependencies = [ 98357 98438 sources."estree-walker-0.6.1" ··· 99237 99318 sha512 = "r+wpPLWySuj/toc1mMkR8++mpFoTm9RZwsqe6guFc/IwEpQdDpmYkT11OGmTqjUqr8WdteOP+MNvdgNgtTzyxQ=="; 99238 99319 }; 99239 99320 dependencies = [ 99240 - sources."@babel/runtime-7.14.6" 99321 + sources."@babel/runtime-7.14.8" 99241 99322 sources."@mapbox/node-pre-gyp-1.0.5" 99242 99323 sources."@node-red/editor-api-2.0.1" 99243 99324 sources."@node-red/editor-client-2.0.1" ··· 99262 99343 sources."@types/cacheable-request-6.0.2" 99263 99344 sources."@types/http-cache-semantics-4.0.1" 99264 99345 sources."@types/keyv-3.1.2" 99265 - sources."@types/node-16.3.3" 99346 + sources."@types/node-16.4.0" 99266 99347 sources."@types/responselike-1.0.0" 99267 99348 sources."abbrev-1.1.1" 99268 99349 sources."accepts-1.3.7" ··· 99374 99455 sources."domelementtype-2.2.0" 99375 99456 sources."domhandler-4.2.0" 99376 99457 sources."domutils-2.7.0" 99377 - (sources."duplexify-4.1.1" // { 99458 + (sources."duplexify-4.1.2" // { 99378 99459 dependencies = [ 99379 99460 sources."readable-stream-3.6.0" 99380 99461 sources."string_decoder-1.3.0" ··· 99996 100077 }; 99997 100078 dependencies = [ 99998 100079 sources."@babel/code-frame-7.14.5" 99999 - sources."@babel/helper-validator-identifier-7.14.5" 100080 + sources."@babel/helper-validator-identifier-7.14.8" 100000 100081 (sources."@babel/highlight-7.14.5" // { 100001 100082 dependencies = [ 100002 100083 sources."ansi-styles-3.2.1" ··· 100022 100103 sources."@types/http-cache-semantics-4.0.1" 100023 100104 sources."@types/keyv-3.1.2" 100024 100105 sources."@types/minimist-1.2.2" 100025 - sources."@types/node-16.3.3" 100106 + sources."@types/node-16.4.0" 100026 100107 sources."@types/normalize-package-data-2.4.1" 100027 100108 sources."@types/parse-json-4.0.0" 100028 100109 sources."@types/responselike-1.0.0" ··· 100901 100982 bypassCache = true; 100902 100983 reconstructLock = true; 100903 100984 }; 100985 + npm-merge-driver = nodeEnv.buildNodePackage { 100986 + name = "npm-merge-driver"; 100987 + packageName = "npm-merge-driver"; 100988 + version = "2.3.6"; 100989 + src = fetchurl { 100990 + url = "https://registry.npmjs.org/npm-merge-driver/-/npm-merge-driver-2.3.6.tgz"; 100991 + sha512 = "uPjCEWZ93f379zw0AMEgFtZIlpSSnpXc8BEIcs8yYHEZs5Y3d85OZHisLjNhjbYnbdAznxTq+VbyBWAQZDEm9w=="; 100992 + }; 100993 + buildInputs = globalBuildInputs; 100994 + meta = { 100995 + description = "git merge driver for automatically merging lockfiles"; 100996 + homepage = "https://github.com/npm/npm-merge-driver#readme"; 100997 + license = "ISC"; 100998 + }; 100999 + production = true; 101000 + bypassCache = true; 101001 + reconstructLock = true; 101002 + }; 100904 101003 "npm2nix-git://github.com/NixOS/npm2nix.git#5.12.0" = nodeEnv.buildNodePackage { 100905 101004 name = "npm2nix"; 100906 101005 packageName = "npm2nix"; ··· 101127 101226 dependencies = [ 101128 101227 sources."@babel/code-frame-7.14.5" 101129 101228 sources."@babel/compat-data-7.14.7" 101130 - (sources."@babel/core-7.14.6" // { 101229 + (sources."@babel/core-7.14.8" // { 101131 101230 dependencies = [ 101132 101231 sources."json5-2.2.0" 101133 101232 sources."semver-6.3.0" 101134 101233 sources."source-map-0.5.7" 101135 101234 ]; 101136 101235 }) 101137 - (sources."@babel/generator-7.14.5" // { 101236 + (sources."@babel/generator-7.14.8" // { 101138 101237 dependencies = [ 101139 101238 sources."source-map-0.5.7" 101140 101239 ]; ··· 101146 101245 sources."semver-6.3.0" 101147 101246 ]; 101148 101247 }) 101149 - sources."@babel/helper-create-class-features-plugin-7.14.6" 101248 + sources."@babel/helper-create-class-features-plugin-7.14.8" 101150 101249 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 101151 101250 (sources."@babel/helper-define-polyfill-provider-0.2.3" // { 101152 101251 dependencies = [ ··· 101159 101258 sources."@babel/helper-hoist-variables-7.14.5" 101160 101259 sources."@babel/helper-member-expression-to-functions-7.14.7" 101161 101260 sources."@babel/helper-module-imports-7.14.5" 101162 - sources."@babel/helper-module-transforms-7.14.5" 101261 + sources."@babel/helper-module-transforms-7.14.8" 101163 101262 sources."@babel/helper-optimise-call-expression-7.14.5" 101164 101263 sources."@babel/helper-plugin-utils-7.14.5" 101165 101264 sources."@babel/helper-remap-async-to-generator-7.14.5" 101166 101265 sources."@babel/helper-replace-supers-7.14.5" 101167 - sources."@babel/helper-simple-access-7.14.5" 101266 + sources."@babel/helper-simple-access-7.14.8" 101168 101267 sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 101169 101268 sources."@babel/helper-split-export-declaration-7.14.5" 101170 - sources."@babel/helper-validator-identifier-7.14.5" 101269 + sources."@babel/helper-validator-identifier-7.14.8" 101171 101270 sources."@babel/helper-validator-option-7.14.5" 101172 101271 sources."@babel/helper-wrap-function-7.14.5" 101173 - sources."@babel/helpers-7.14.6" 101272 + sources."@babel/helpers-7.14.8" 101174 101273 sources."@babel/highlight-7.14.5" 101175 - sources."@babel/parser-7.14.7" 101274 + sources."@babel/parser-7.14.8" 101176 101275 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 101177 101276 sources."@babel/plugin-proposal-async-generator-functions-7.14.7" 101178 101277 sources."@babel/plugin-proposal-class-properties-7.14.5" ··· 101239 101338 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 101240 101339 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 101241 101340 sources."@babel/plugin-transform-unicode-regex-7.14.5" 101242 - (sources."@babel/preset-env-7.14.7" // { 101341 + (sources."@babel/preset-env-7.14.8" // { 101243 101342 dependencies = [ 101244 101343 sources."semver-6.3.0" 101245 101344 ]; 101246 101345 }) 101247 101346 sources."@babel/preset-modules-0.1.4" 101248 - sources."@babel/runtime-7.14.6" 101347 + sources."@babel/runtime-7.14.8" 101249 101348 sources."@babel/template-7.14.5" 101250 - sources."@babel/traverse-7.14.7" 101251 - sources."@babel/types-7.14.5" 101349 + sources."@babel/traverse-7.14.8" 101350 + sources."@babel/types-7.14.8" 101252 101351 sources."@iarna/toml-2.2.5" 101253 101352 sources."@mrmlnc/readdir-enhanced-2.2.1" 101254 101353 sources."@nodelib/fs.stat-1.1.3" ··· 101370 101469 sources."caller-path-2.0.0" 101371 101470 sources."callsites-2.0.0" 101372 101471 sources."caniuse-api-3.0.0" 101373 - sources."caniuse-lite-1.0.30001245" 101472 + sources."caniuse-lite-1.0.30001246" 101374 101473 sources."caseless-0.12.0" 101375 101474 sources."chalk-2.4.2" 101376 101475 sources."chokidar-2.1.8" ··· 101508 101607 sources."duplexer2-0.1.4" 101509 101608 sources."ecc-jsbn-0.1.2" 101510 101609 sources."ee-first-1.1.1" 101511 - sources."electron-to-chromium-1.3.780" 101610 + sources."electron-to-chromium-1.3.782" 101512 101611 (sources."elliptic-6.5.4" // { 101513 101612 dependencies = [ 101514 101613 sources."bn.js-4.12.0" ··· 103173 103272 sha512 = "/DGG+QcSPraMAIxaoGCNqb2A6Xkm2jBQMsj2mjb4ag236ByTY9Xhpikvj5ixwlSQV0euuJw4fphKCd5YHRPS8w=="; 103174 103273 }; 103175 103274 dependencies = [ 103176 - sources."@babel/helper-validator-identifier-7.14.5" 103275 + sources."@babel/helper-validator-identifier-7.14.8" 103177 103276 sources."@babel/parser-7.13.13" 103178 103277 sources."@babel/types-7.13.12" 103179 103278 sources."@nodelib/fs.scandir-2.1.5" ··· 104508 104607 sha512 = "coA9MuNPfN+8TyFj7aOycw2e5W9t+sSgFOUyK30oDrh2MWWWHLjY0I4V1puyCconC2arggfDE2GYXvqOTCGv9Q=="; 104509 104608 }; 104510 104609 dependencies = [ 104511 - sources."@babel/cli-7.14.5" 104610 + sources."@babel/cli-7.14.8" 104512 104611 sources."@babel/code-frame-7.14.5" 104513 104612 sources."@babel/compat-data-7.14.7" 104514 - (sources."@babel/core-7.14.6" // { 104613 + (sources."@babel/core-7.14.8" // { 104515 104614 dependencies = [ 104516 104615 sources."semver-6.3.0" 104517 104616 ]; 104518 104617 }) 104519 - sources."@babel/generator-7.14.5" 104618 + sources."@babel/generator-7.14.8" 104520 104619 sources."@babel/helper-annotate-as-pure-7.14.5" 104521 104620 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 104522 104621 (sources."@babel/helper-compilation-targets-7.14.5" // { ··· 104524 104623 sources."semver-6.3.0" 104525 104624 ]; 104526 104625 }) 104527 - sources."@babel/helper-create-class-features-plugin-7.14.6" 104626 + sources."@babel/helper-create-class-features-plugin-7.14.8" 104528 104627 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 104529 104628 (sources."@babel/helper-define-polyfill-provider-0.2.3" // { 104530 104629 dependencies = [ ··· 104537 104636 sources."@babel/helper-hoist-variables-7.14.5" 104538 104637 sources."@babel/helper-member-expression-to-functions-7.14.7" 104539 104638 sources."@babel/helper-module-imports-7.14.5" 104540 - sources."@babel/helper-module-transforms-7.14.5" 104639 + sources."@babel/helper-module-transforms-7.14.8" 104541 104640 sources."@babel/helper-optimise-call-expression-7.14.5" 104542 104641 sources."@babel/helper-plugin-utils-7.14.5" 104543 104642 sources."@babel/helper-remap-async-to-generator-7.14.5" 104544 104643 sources."@babel/helper-replace-supers-7.14.5" 104545 - sources."@babel/helper-simple-access-7.14.5" 104644 + sources."@babel/helper-simple-access-7.14.8" 104546 104645 sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 104547 104646 sources."@babel/helper-split-export-declaration-7.14.5" 104548 - sources."@babel/helper-validator-identifier-7.14.5" 104647 + sources."@babel/helper-validator-identifier-7.14.8" 104549 104648 sources."@babel/helper-validator-option-7.14.5" 104550 104649 sources."@babel/helper-wrap-function-7.14.5" 104551 - sources."@babel/helpers-7.14.6" 104650 + sources."@babel/helpers-7.14.8" 104552 104651 sources."@babel/highlight-7.14.5" 104553 - sources."@babel/parser-7.14.7" 104652 + sources."@babel/parser-7.14.8" 104554 104653 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 104555 104654 sources."@babel/plugin-proposal-async-generator-functions-7.14.7" 104556 104655 sources."@babel/plugin-proposal-class-properties-7.14.5" ··· 104625 104724 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 104626 104725 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 104627 104726 sources."@babel/plugin-transform-unicode-regex-7.14.5" 104628 - (sources."@babel/preset-env-7.14.7" // { 104727 + (sources."@babel/preset-env-7.14.8" // { 104629 104728 dependencies = [ 104630 104729 sources."semver-6.3.0" 104631 104730 ]; ··· 104634 104733 sources."@babel/preset-react-7.14.5" 104635 104734 sources."@babel/preset-stage-0-7.8.3" 104636 104735 sources."@babel/register-7.14.5" 104637 - sources."@babel/runtime-7.14.6" 104736 + sources."@babel/runtime-7.14.8" 104638 104737 sources."@babel/template-7.14.5" 104639 - sources."@babel/traverse-7.14.7" 104640 - sources."@babel/types-7.14.5" 104738 + sources."@babel/traverse-7.14.8" 104739 + sources."@babel/types-7.14.8" 104641 104740 sources."@reach/router-1.3.4" 104642 104741 sources."@sindresorhus/is-0.7.0" 104643 104742 sources."@types/glob-7.1.4" 104644 104743 sources."@types/json-schema-7.0.8" 104645 104744 sources."@types/minimatch-3.0.5" 104646 - sources."@types/node-16.3.3" 104745 + sources."@types/node-16.4.0" 104647 104746 sources."@types/parse-json-4.0.0" 104648 104747 sources."@types/q-1.5.5" 104649 104748 sources."@webassemblyjs/ast-1.9.0" ··· 104831 104930 sources."camel-case-3.0.0" 104832 104931 sources."camelcase-5.3.1" 104833 104932 sources."caniuse-api-3.0.0" 104834 - sources."caniuse-lite-1.0.30001245" 104933 + sources."caniuse-lite-1.0.30001246" 104835 104934 sources."case-sensitive-paths-webpack-plugin-2.4.0" 104836 104935 sources."caw-2.0.1" 104837 104936 (sources."chalk-2.4.2" // { ··· 105060 105159 sources."duplexify-3.7.1" 105061 105160 sources."ee-first-1.1.1" 105062 105161 sources."ejs-2.7.4" 105063 - sources."electron-to-chromium-1.3.780" 105162 + sources."electron-to-chromium-1.3.782" 105064 105163 (sources."elliptic-6.5.4" // { 105065 105164 dependencies = [ 105066 105165 sources."bn.js-4.12.0" ··· 106423 106522 }; 106424 106523 dependencies = [ 106425 106524 sources."@babel/code-frame-7.14.5" 106426 - (sources."@babel/generator-7.14.5" // { 106525 + (sources."@babel/generator-7.14.8" // { 106427 106526 dependencies = [ 106428 106527 sources."source-map-0.5.7" 106429 106528 ]; ··· 106434 106533 sources."@babel/helper-hoist-variables-7.14.5" 106435 106534 sources."@babel/helper-module-imports-7.14.5" 106436 106535 sources."@babel/helper-split-export-declaration-7.14.5" 106437 - sources."@babel/helper-validator-identifier-7.14.5" 106536 + sources."@babel/helper-validator-identifier-7.14.8" 106438 106537 sources."@babel/highlight-7.14.5" 106439 - sources."@babel/parser-7.14.7" 106440 - sources."@babel/runtime-7.14.6" 106538 + sources."@babel/parser-7.14.8" 106539 + sources."@babel/runtime-7.14.8" 106441 106540 sources."@babel/template-7.14.5" 106442 - sources."@babel/traverse-7.14.7" 106443 - sources."@babel/types-7.14.5" 106541 + sources."@babel/traverse-7.14.8" 106542 + sources."@babel/types-7.14.8" 106444 106543 sources."@emotion/is-prop-valid-0.8.8" 106445 106544 sources."@emotion/memoize-0.7.4" 106446 106545 sources."@emotion/stylis-0.8.5" ··· 106930 107029 rollup = nodeEnv.buildNodePackage { 106931 107030 name = "rollup"; 106932 107031 packageName = "rollup"; 106933 - version = "2.53.2"; 107032 + version = "2.53.3"; 106934 107033 src = fetchurl { 106935 - url = "https://registry.npmjs.org/rollup/-/rollup-2.53.2.tgz"; 106936 - sha512 = "1CtEYuS5CRCzFZ7SNW5528SlDlk4VDXIRGwbm/2POQxA/G4+7/crIqJwkmnj8Q/74hGx4oVlNvh4E1CJQ5hZ6w=="; 107034 + url = "https://registry.npmjs.org/rollup/-/rollup-2.53.3.tgz"; 107035 + sha512 = "79QIGP5DXz5ZHYnCPi3tLz+elOQi6gudp9YINdaJdjG0Yddubo6JRFUM//qCZ0Bap/GJrsUoEBVdSOc4AkMlRA=="; 106937 107036 }; 106938 107037 dependencies = [ 106939 107038 sources."fsevents-2.3.2" ··· 106955 107054 src = ../../misc/vscode-extensions/rust-analyzer/build-deps; 106956 107055 dependencies = [ 106957 107056 sources."@babel/code-frame-7.12.11" 106958 - sources."@babel/helper-validator-identifier-7.14.5" 107057 + sources."@babel/helper-validator-identifier-7.14.8" 106959 107058 (sources."@babel/highlight-7.14.5" // { 106960 107059 dependencies = [ 106961 107060 sources."chalk-2.4.2" ··· 107259 107358 sources."resolve-from-4.0.0" 107260 107359 sources."reusify-1.0.4" 107261 107360 sources."rimraf-3.0.2" 107262 - sources."rollup-2.53.2" 107361 + sources."rollup-2.53.3" 107263 107362 sources."run-parallel-1.2.0" 107264 107363 sources."safe-buffer-5.2.1" 107265 107364 sources."semver-7.3.5" ··· 107673 107772 ]; 107674 107773 }) 107675 107774 sources."@serverless/component-metrics-1.0.8" 107676 - (sources."@serverless/components-3.13.4" // { 107775 + (sources."@serverless/components-3.14.0" // { 107677 107776 dependencies = [ 107678 107777 (sources."@serverless/utils-4.1.0" // { 107679 107778 dependencies = [ ··· 107716 107815 ]; 107717 107816 }) 107718 107817 sources."@serverless/template-1.1.4" 107719 - (sources."@serverless/utils-5.4.0" // { 107818 + (sources."@serverless/utils-5.5.0" // { 107720 107819 dependencies = [ 107721 107820 sources."get-stream-6.0.1" 107722 107821 sources."jwt-decode-3.1.2" ··· 107734 107833 sources."@types/keyv-3.1.2" 107735 107834 sources."@types/lodash-4.14.171" 107736 107835 sources."@types/long-4.0.1" 107737 - sources."@types/node-16.3.3" 107836 + sources."@types/node-16.4.0" 107738 107837 sources."@types/request-2.48.6" 107739 107838 sources."@types/request-promise-native-1.0.18" 107740 107839 sources."@types/responselike-1.0.0" ··· 107795 107894 sources."async-2.6.3" 107796 107895 sources."asynckit-0.4.0" 107797 107896 sources."at-least-node-1.0.0" 107798 - (sources."aws-sdk-2.949.0" // { 107897 + (sources."aws-sdk-2.950.0" // { 107799 107898 dependencies = [ 107800 107899 sources."buffer-4.9.2" 107801 107900 sources."ieee754-1.1.13" ··· 107977 108076 sources."dotenv-10.0.0" 107978 108077 sources."dotenv-expand-5.1.0" 107979 108078 sources."duplexer3-0.1.4" 107980 - sources."duplexify-4.1.1" 108079 + sources."duplexify-4.1.2" 107981 108080 sources."duration-0.2.2" 107982 108081 sources."ecc-jsbn-0.1.2" 107983 108082 sources."emoji-regex-8.0.0" ··· 108024 108123 sources."fd-slicer-1.1.0" 108025 108124 sources."fecha-4.2.1" 108026 108125 sources."figures-3.2.0" 108027 - sources."file-type-16.5.1" 108126 + sources."file-type-16.5.2" 108028 108127 sources."file-uri-to-path-1.0.0" 108029 108128 sources."filename-reserved-regex-2.0.0" 108030 108129 sources."filenamify-4.3.0" ··· 108270 108369 sources."path-loader-1.0.10" 108271 108370 sources."path-type-4.0.0" 108272 108371 sources."path2-0.1.0" 108273 - sources."peek-readable-4.0.0" 108372 + sources."peek-readable-3.1.4" 108274 108373 sources."pend-1.2.0" 108275 108374 sources."performance-now-2.1.0" 108276 108375 sources."picomatch-2.3.0" ··· 108381 108480 sources."strip-dirs-2.1.0" 108382 108481 sources."strip-json-comments-2.0.1" 108383 108482 sources."strip-outer-1.0.1" 108384 - sources."strtok3-6.2.2" 108483 + sources."strtok3-6.1.3" 108385 108484 (sources."superagent-3.8.3" // { 108386 108485 dependencies = [ 108387 108486 sources."debug-3.2.7" ··· 108442 108541 sources."to-buffer-1.1.1" 108443 108542 sources."to-readable-stream-1.0.0" 108444 108543 sources."to-regex-range-5.0.1" 108445 - sources."token-types-2.1.1" 108544 + sources."token-types-3.1.0" 108446 108545 sources."tough-cookie-2.5.0" 108447 108546 sources."traverse-0.6.6" 108448 108547 sources."trim-repeated-1.0.0" ··· 109911 110010 sources."@types/component-emitter-1.2.10" 109912 110011 sources."@types/cookie-0.4.1" 109913 110012 sources."@types/cors-2.8.12" 109914 - sources."@types/node-16.3.3" 110013 + sources."@types/node-16.4.0" 109915 110014 sources."accepts-1.3.7" 109916 110015 sources."base64-arraybuffer-0.1.4" 109917 110016 sources."base64id-2.0.0" ··· 111177 111276 sources."async-1.5.2" 111178 111277 sources."async-limiter-1.0.1" 111179 111278 sources."asynckit-0.4.0" 111180 - (sources."aws-sdk-2.949.0" // { 111279 + (sources."aws-sdk-2.950.0" // { 111181 111280 dependencies = [ 111182 111281 sources."uuid-3.3.2" 111183 111282 ]; ··· 111961 112060 dependencies = [ 111962 112061 sources."@babel/code-frame-7.14.5" 111963 112062 sources."@babel/compat-data-7.14.7" 111964 - sources."@babel/core-7.14.6" 111965 - sources."@babel/generator-7.14.5" 112063 + sources."@babel/core-7.14.8" 112064 + sources."@babel/generator-7.14.8" 111966 112065 sources."@babel/helper-compilation-targets-7.14.5" 111967 112066 sources."@babel/helper-function-name-7.14.5" 111968 112067 sources."@babel/helper-get-function-arity-7.14.5" 111969 112068 sources."@babel/helper-hoist-variables-7.14.5" 111970 112069 sources."@babel/helper-member-expression-to-functions-7.14.7" 111971 112070 sources."@babel/helper-module-imports-7.14.5" 111972 - sources."@babel/helper-module-transforms-7.14.5" 112071 + sources."@babel/helper-module-transforms-7.14.8" 111973 112072 sources."@babel/helper-optimise-call-expression-7.14.5" 111974 112073 sources."@babel/helper-replace-supers-7.14.5" 111975 - sources."@babel/helper-simple-access-7.14.5" 112074 + sources."@babel/helper-simple-access-7.14.8" 111976 112075 sources."@babel/helper-split-export-declaration-7.14.5" 111977 - sources."@babel/helper-validator-identifier-7.14.5" 112076 + sources."@babel/helper-validator-identifier-7.14.8" 111978 112077 sources."@babel/helper-validator-option-7.14.5" 111979 - sources."@babel/helpers-7.14.6" 112078 + sources."@babel/helpers-7.14.8" 111980 112079 (sources."@babel/highlight-7.14.5" // { 111981 112080 dependencies = [ 111982 112081 sources."chalk-2.4.2" 111983 112082 ]; 111984 112083 }) 111985 - sources."@babel/parser-7.14.7" 112084 + sources."@babel/parser-7.14.8" 111986 112085 sources."@babel/template-7.14.5" 111987 - sources."@babel/traverse-7.14.7" 111988 - sources."@babel/types-7.14.5" 112086 + sources."@babel/traverse-7.14.8" 112087 + sources."@babel/types-7.14.8" 111989 112088 sources."@nodelib/fs.scandir-2.1.5" 111990 112089 sources."@nodelib/fs.stat-2.0.5" 111991 112090 sources."@nodelib/fs.walk-1.2.8" ··· 112015 112114 sources."callsites-3.1.0" 112016 112115 sources."camelcase-5.3.1" 112017 112116 sources."camelcase-keys-6.2.2" 112018 - sources."caniuse-lite-1.0.30001245" 112117 + sources."caniuse-lite-1.0.30001246" 112019 112118 (sources."chalk-4.1.1" // { 112020 112119 dependencies = [ 112021 112120 sources."ansi-styles-4.3.0" ··· 112053 112152 sources."domelementtype-1.3.1" 112054 112153 sources."domhandler-2.4.2" 112055 112154 sources."domutils-1.7.0" 112056 - sources."electron-to-chromium-1.3.780" 112155 + sources."electron-to-chromium-1.3.782" 112057 112156 sources."emoji-regex-8.0.0" 112058 112157 sources."entities-1.1.2" 112059 112158 sources."error-ex-1.3.2" ··· 112295 112394 sources."@emmetio/abbreviation-2.2.2" 112296 112395 sources."@emmetio/css-abbreviation-2.1.4" 112297 112396 sources."@emmetio/scanner-1.0.0" 112298 - sources."@types/node-16.3.3" 112397 + sources."@types/node-16.4.0" 112299 112398 sources."@types/pug-2.0.5" 112300 112399 sources."@types/sass-1.16.1" 112301 112400 sources."anymatch-3.1.2" ··· 113643 113742 }; 113644 113743 dependencies = [ 113645 113744 sources."@babel/code-frame-7.14.5" 113646 - sources."@babel/helper-validator-identifier-7.14.5" 113745 + sources."@babel/helper-validator-identifier-7.14.8" 113647 113746 sources."@babel/highlight-7.14.5" 113648 113747 sources."@sindresorhus/is-0.14.0" 113649 113748 sources."@szmarczak/http-timer-1.1.2" ··· 114453 114552 sources."@types/cacheable-request-6.0.2" 114454 114553 sources."@types/http-cache-semantics-4.0.1" 114455 114554 sources."@types/keyv-3.1.2" 114456 - sources."@types/node-16.3.3" 114555 + sources."@types/node-16.4.0" 114457 114556 sources."@types/responselike-1.0.0" 114458 114557 sources."abbrev-1.1.1" 114459 114558 sources."abstract-logging-2.0.1" ··· 115991 116090 }; 115992 116091 dependencies = [ 115993 116092 sources."@babel/code-frame-7.12.11" 115994 - sources."@babel/helper-validator-identifier-7.14.5" 116093 + sources."@babel/helper-validator-identifier-7.14.8" 115995 116094 (sources."@babel/highlight-7.14.5" // { 115996 116095 dependencies = [ 115997 116096 sources."chalk-2.4.2" ··· 116391 116490 sources."buffer-from-1.1.1" 116392 116491 sources."call-bind-1.0.2" 116393 116492 sources."camelcase-6.2.0" 116394 - sources."caniuse-lite-1.0.30001245" 116493 + sources."caniuse-lite-1.0.30001246" 116395 116494 (sources."chalk-4.1.1" // { 116396 116495 dependencies = [ 116397 116496 sources."supports-color-7.2.0" ··· 116431 116530 sources."domelementtype-2.2.0" 116432 116531 sources."domhandler-4.2.0" 116433 116532 sources."domutils-2.7.0" 116434 - sources."electron-to-chromium-1.3.780" 116533 + sources."electron-to-chromium-1.3.782" 116435 116534 sources."emoji-regex-8.0.0" 116436 116535 sources."emojis-list-3.0.0" 116437 116536 sources."enhanced-resolve-5.8.2" ··· 116981 117080 }; 116982 117081 dependencies = [ 116983 117082 sources."@babel/code-frame-7.14.5" 116984 - sources."@babel/helper-validator-identifier-7.14.5" 117083 + sources."@babel/helper-validator-identifier-7.14.8" 116985 117084 sources."@babel/highlight-7.14.5" 116986 117085 sources."@emmetio/extract-abbreviation-0.1.6" 116987 117086 sources."@mrmlnc/readdir-enhanced-2.2.1" ··· 116998 117097 sources."@starptech/rehype-webparser-0.10.0" 116999 117098 sources."@starptech/webparser-0.10.0" 117000 117099 sources."@szmarczak/http-timer-1.1.2" 117001 - sources."@types/node-16.3.3" 117100 + sources."@types/node-16.4.0" 117002 117101 sources."@types/unist-2.0.6" 117003 117102 sources."@types/vfile-3.0.2" 117004 117103 sources."@types/vfile-message-2.0.0" ··· 117921 118020 sha512 = "uhSNGU27KDT2e2v51l/NqMc59O7X0DG7CHonZOwsnvMHLvyudCLZgXCU8Rw4T8gpqg2asn50vfPHq7l3DGlN5w=="; 117922 118021 }; 117923 118022 dependencies = [ 117924 - sources."@babel/runtime-corejs3-7.14.7" 118023 + sources."@babel/runtime-corejs3-7.14.8" 117925 118024 sources."@mapbox/node-pre-gyp-1.0.5" 117926 118025 sources."@tootallnate/once-1.1.2" 117927 118026 sources."@types/raf-3.4.0" ··· 118144 118243 }; 118145 118244 dependencies = [ 118146 118245 sources."@babel/code-frame-7.12.11" 118147 - sources."@babel/helper-validator-identifier-7.14.5" 118246 + sources."@babel/helper-validator-identifier-7.14.8" 118148 118247 (sources."@babel/highlight-7.14.5" // { 118149 118248 dependencies = [ 118150 118249 sources."ansi-styles-3.2.1" ··· 118170 118269 sources."@sindresorhus/is-0.14.0" 118171 118270 sources."@szmarczak/http-timer-1.1.2" 118172 118271 sources."@types/minimatch-3.0.5" 118173 - sources."@types/node-16.3.3" 118272 + sources."@types/node-16.4.0" 118174 118273 sources."@types/yauzl-2.9.1" 118175 118274 sources."acorn-7.4.1" 118176 118275 sources."acorn-jsx-5.3.2" ··· 118470 118569 sources."lcid-3.1.1" 118471 118570 sources."levn-0.4.1" 118472 118571 sources."lie-3.3.0" 118473 - sources."lighthouse-logger-1.2.0" 118572 + sources."lighthouse-logger-1.3.0" 118474 118573 sources."lines-and-columns-1.1.6" 118475 118574 sources."lodash.clonedeep-4.5.0" 118476 118575 sources."lodash.includes-4.3.0" ··· 118733 118832 sources."@types/eslint-scope-3.7.1" 118734 118833 sources."@types/estree-0.0.50" 118735 118834 sources."@types/json-schema-7.0.8" 118736 - sources."@types/node-16.3.3" 118835 + sources."@types/node-16.4.0" 118737 118836 sources."@webassemblyjs/ast-1.11.1" 118738 118837 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 118739 118838 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 118756 118855 sources."ajv-keywords-3.5.2" 118757 118856 sources."browserslist-4.16.6" 118758 118857 sources."buffer-from-1.1.1" 118759 - sources."caniuse-lite-1.0.30001245" 118858 + sources."caniuse-lite-1.0.30001246" 118760 118859 sources."chrome-trace-event-1.0.3" 118761 118860 sources."colorette-1.2.2" 118762 118861 sources."commander-2.20.3" 118763 - sources."electron-to-chromium-1.3.780" 118862 + sources."electron-to-chromium-1.3.782" 118764 118863 sources."enhanced-resolve-5.8.2" 118765 118864 sources."es-module-lexer-0.7.1" 118766 118865 sources."escalade-3.1.1" ··· 118898 118997 dependencies = [ 118899 118998 sources."@types/glob-7.1.4" 118900 118999 sources."@types/minimatch-3.0.5" 118901 - sources."@types/node-16.3.3" 119000 + sources."@types/node-16.4.0" 118902 119001 sources."accepts-1.3.7" 118903 119002 sources."ajv-6.12.6" 118904 119003 sources."ajv-errors-1.0.1" ··· 119552 119651 sources."@protobufjs/pool-1.1.0" 119553 119652 sources."@protobufjs/utf8-1.1.0" 119554 119653 sources."@types/long-4.0.1" 119555 - sources."@types/node-16.3.3" 119654 + sources."@types/node-16.4.0" 119556 119655 sources."addr-to-ip-port-1.5.1" 119557 119656 sources."airplay-js-0.3.0" 119558 119657 sources."ansi-regex-5.0.0" ··· 119988 120087 sha512 = "dbHkO8dp4/KDsU5V7akSWVdWB+yyfadR0q3vGxRKXxg1umiYlFUrPuiu66Iy4IpRRr2Qrqx495kInkZJIJtqmA=="; 119989 120088 }; 119990 120089 dependencies = [ 119991 - sources."@babel/runtime-7.14.6" 120090 + sources."@babel/runtime-7.14.8" 119992 120091 sources."@nodelib/fs.scandir-2.1.5" 119993 120092 sources."@nodelib/fs.stat-2.0.5" 119994 120093 sources."@nodelib/fs.walk-1.2.8" ··· 120926 121025 dependencies = [ 120927 121026 sources."@types/fs-extra-9.0.12" 120928 121027 sources."@types/minimist-1.2.2" 120929 - sources."@types/node-16.3.3" 121028 + sources."@types/node-16.4.0" 120930 121029 sources."@types/node-fetch-2.5.11" 120931 121030 sources."ansi-styles-4.3.0" 120932 121031 sources."asynckit-0.4.0"
+2 -2
pkgs/development/python-modules/APScheduler/default.nix
··· 6 6 , pytestCheckHook 7 7 , pytest-asyncio 8 8 , pytest-tornado 9 - , pytestcov 9 + , pytest-cov 10 10 , sqlalchemy 11 11 , tornado 12 12 , twisted ··· 38 38 pytest-asyncio 39 39 pytest-tornado 40 40 pytestCheckHook 41 - pytestcov 41 + pytest-cov 42 42 sqlalchemy 43 43 tornado 44 44 twisted
+2 -2
pkgs/development/python-modules/adb-shell/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "adb-shell"; 17 - version = "0.3.4"; 17 + version = "0.4.0"; 18 18 19 19 disabled = !isPy3k; 20 20 ··· 23 23 owner = "JeffLIrion"; 24 24 repo = "adb_shell"; 25 25 rev = "v${version}"; 26 - sha256 = "sha256-H1GVbMeaVUZh8T1jgZP2o+emEkK4fOi5k4aL9ayVesA="; 26 + sha256 = "1dzpgpvjvss4mk2kp1s9g1gg0d008pbmfdsi9b98q9fax9syk725"; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/aiocontextvars/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , pytestrunner 4 + , pytest-runner 5 5 , pytest 6 6 , pytest-asyncio 7 7 , contextvars ··· 23 23 }; 24 24 25 25 buildInputs = [ 26 - pytestrunner 26 + pytest-runner 27 27 ]; 28 28 29 29 checkInputs = [
+2 -2
pkgs/development/python-modules/aioftp/default.nix
··· 4 4 , isPy27 5 5 , pytest 6 6 , pytest-asyncio 7 - , pytestcov 7 + , pytest-cov 8 8 , trustme 9 9 , async-timeout 10 10 }: ··· 22 22 checkInputs = [ 23 23 pytest 24 24 pytest-asyncio 25 - pytestcov 25 + pytest-cov 26 26 trustme 27 27 async-timeout 28 28 ];
+2 -2
pkgs/development/python-modules/aiohttp-jinja2/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, aiohttp, jinja2, pytest, pytest-aiohttp, pytestcov }: 1 + { lib, buildPythonPackage, fetchPypi, aiohttp, jinja2, pytest, pytest-aiohttp, pytest-cov }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "aiohttp-jinja2"; ··· 11 11 12 12 propagatedBuildInputs = [ aiohttp jinja2 ]; 13 13 14 - checkInputs = [ pytest pytest-aiohttp pytestcov ]; 14 + checkInputs = [ pytest pytest-aiohttp pytest-cov ]; 15 15 16 16 checkPhase = '' 17 17 pytest -W ignore::DeprecationWarning
+2 -2
pkgs/development/python-modules/aiohttp-remotes/default.nix
··· 1 1 { lib, fetchpatch, buildPythonPackage, fetchPypi 2 - , aiohttp, pytest, pytestcov, pytest-aiohttp 2 + , aiohttp, pytest, pytest-cov, pytest-aiohttp 3 3 }: 4 4 5 5 buildPythonPackage rec { ··· 13 13 14 14 propagatedBuildInputs = [ aiohttp ]; 15 15 16 - checkInputs = [ pytest pytestcov pytest-aiohttp ]; 16 + checkInputs = [ pytest pytest-cov pytest-aiohttp ]; 17 17 checkPhase = '' 18 18 python -m pytest 19 19 '';
+2 -2
pkgs/development/python-modules/aiostream/default.nix
··· 3 3 , fetchFromGitHub 4 4 , pythonOlder 5 5 , pytestCheckHook 6 - , pytestcov 6 + , pytest-cov 7 7 , pytest-asyncio 8 8 }: 9 9 ··· 19 19 sha256 = "1r3x9qwl08yscmzvhafc6gsmq84lr17s6p7a1qxr49cmdvjzsc13"; 20 20 }; 21 21 22 - checkInputs = [ pytestCheckHook pytestcov pytest-asyncio ]; 22 + checkInputs = [ pytestCheckHook pytest-cov pytest-asyncio ]; 23 23 24 24 meta = with lib; { 25 25 description = "Generator-based operators for asynchronous iteration";
+2 -2
pkgs/development/python-modules/alembic/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 - , pytest, pytestcov, mock, coverage, setuptools 2 + , pytest, pytest-cov, mock, coverage, setuptools 3 3 , Mako, sqlalchemy, python-editor, python-dateutil 4 4 }: 5 5 ··· 12 12 sha256 = "a21fedebb3fb8f6bbbba51a11114f08c78709377051384c9c5ead5705ee93a51"; 13 13 }; 14 14 15 - buildInputs = [ pytest pytestcov mock coverage ]; 15 + buildInputs = [ pytest pytest-cov mock coverage ]; 16 16 propagatedBuildInputs = [ Mako sqlalchemy python-editor python-dateutil setuptools ]; 17 17 18 18 # no traditional test suite
+2 -2
pkgs/development/python-modules/apprise/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, installShellFiles 2 2 , Babel, requests, requests_oauthlib, six, click, markdown, pyyaml, cryptography 3 - , pytestrunner, coverage, flake8, mock, pytestCheckHook, pytestcov, tox, gntp, sleekxmpp 3 + , pytest-runner, coverage, flake8, mock, pytestCheckHook, pytest-cov, tox, gntp, sleekxmpp 4 4 }: 5 5 6 6 buildPythonPackage rec { ··· 19 19 ]; 20 20 21 21 checkInputs = [ 22 - pytestrunner coverage flake8 mock pytestCheckHook pytestcov tox gntp sleekxmpp 22 + pytest-runner coverage flake8 mock pytestCheckHook pytest-cov tox gntp sleekxmpp 23 23 ]; 24 24 25 25 disabledTests = [ "test_apprise_cli_nux_env" ];
+2 -2
pkgs/development/python-modules/argcomplete/default.nix
··· 3 3 , importlib-metadata 4 4 , pexpect 5 5 , prettytable 6 - , requests_toolbelt 6 + , requests-toolbelt 7 7 }: 8 8 buildPythonPackage rec { 9 9 pname = "argcomplete"; ··· 24 24 importlib-metadata 25 25 pexpect 26 26 prettytable 27 - requests_toolbelt 27 + requests-toolbelt 28 28 ]; 29 29 30 30 pythonImportsCheck = [ "argcomplete" ];
+2 -2
pkgs/development/python-modules/aria2p/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder 2 - , aria2, poetry, pytest, pytestcov, pytest_xdist, responses 2 + , aria2, poetry, pytest, pytest-cov, pytest-xdist, responses 3 3 , asciimatics, loguru, requests, setuptools, websocket-client 4 4 }: 5 5 ··· 22 22 export HOME=$TMPDIR 23 23 ''; 24 24 25 - checkInputs = [ aria2 responses pytest pytestcov pytest_xdist ]; 25 + checkInputs = [ aria2 responses pytest pytest-cov pytest-xdist ]; 26 26 27 27 # Tests are not all stable/deterministic, 28 28 # they rely on actually running an aria2c daemon and communicating with it,
+2 -2
pkgs/development/python-modules/arpeggio/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , glibcLocales 5 - , pytestrunner 5 + , pytest-runner 6 6 , pytestCheckHook 7 7 }: 8 8 ··· 19 19 LC_ALL = "en_US.UTF-8"; 20 20 buildInputs = [ glibcLocales ]; 21 21 22 - nativeBuildInputs = [ pytestrunner ]; 22 + nativeBuildInputs = [ pytest-runner ]; 23 23 24 24 checkInputs = [ pytestCheckHook ]; 25 25
+2 -2
pkgs/development/python-modules/arrow/2.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPy27 2 2 , nose, chai, simplejson, backports_functools_lru_cache 3 - , python-dateutil, pytz, pytest-mock, sphinx, dateparser, pytestcov 3 + , python-dateutil, pytz, pytest-mock, sphinx, dateparser, pytest-cov 4 4 , pytestCheckHook 5 5 }: 6 6 ··· 19 19 checkInputs = [ 20 20 dateparser 21 21 pytestCheckHook 22 - pytestcov 22 + pytest-cov 23 23 pytest-mock 24 24 pytz 25 25 simplejson
+2 -2
pkgs/development/python-modules/asyncio_mqtt/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "asyncio_mqtt"; 12 - version = "0.9.1"; 12 + version = "0.10.0"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "0550229cecde6ff1751c49dd5ea26b02bf52b7e9bbe9bf763da765f35bb281de"; 16 + sha256 = "0s94dvgh1fazycppki5m6f9d60hc4ykhqfznlzpwl4dzknxplpsz"; 17 17 }; 18 18 19 19 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/atpublic/default.nix
··· 1 1 { lib, isPy3k, pythonOlder, fetchPypi, buildPythonPackage 2 2 , pytest 3 - , pytestcov 3 + , pytest-cov 4 4 , sybil 5 5 , typing-extensions 6 6 }: ··· 20 20 ]; 21 21 22 22 checkInputs = [ 23 - pytest pytestcov sybil 23 + pytest pytest-cov sybil 24 24 ]; 25 25 26 26 checkPhase = ''
+2 -2
pkgs/development/python-modules/awkward0/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , numpy 5 - , pytestrunner 5 + , pytest-runner 6 6 , pytestCheckHook 7 7 }: 8 8 ··· 17 17 sha256 = "039pxzgll2yz8xpr6bw788ymvgvqgna5kgl9m6d9mzi4yhbjsjpx"; 18 18 }; 19 19 20 - nativeBuildInputs = [ pytestrunner ]; 20 + nativeBuildInputs = [ pytest-runner ]; 21 21 22 22 propagatedBuildInputs = [ numpy ]; 23 23
+2 -2
pkgs/development/python-modules/backports_functools_lru_cache/default.nix
··· 6 6 , pytest 7 7 , pytest-black 8 8 , pytest-flake8 9 - , pytestcov 9 + , pytest-cov 10 10 }: 11 11 12 12 buildPythonPackage rec { ··· 20 20 21 21 nativeBuildInputs = [ setuptools-scm ]; 22 22 23 - checkInputs = [ pytest pytest-flake8 pytest-black pytestcov ]; 23 + checkInputs = [ pytest pytest-flake8 pytest-black pytest-cov ]; 24 24 # ironically, they fail a linting test, and pytest.ini forces that test suite 25 25 checkPhase = '' 26 26 rm backports/functools_lru_cache.py
+2 -2
pkgs/development/python-modules/bacpypes/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, fetchFromGitHub 2 - , wheel, pytestCheckHook, pytestrunner, pythonAtLeast }: 2 + , wheel, pytestCheckHook, pytest-runner, pythonAtLeast }: 3 3 4 4 buildPythonPackage rec { 5 5 version = "0.18.4"; ··· 16 16 propagatedBuildInputs = [ wheel ]; 17 17 18 18 # Using pytes instead of setuptools check hook allows disabling specific tests 19 - checkInputs = [ pytestCheckHook pytestrunner ]; 19 + checkInputs = [ pytestCheckHook pytest-runner ]; 20 20 dontUseSetuptoolsCheck = true; 21 21 disabledTests = [ 22 22 # Test fails with a an error: AssertionError: assert 30 == 31
+2 -2
pkgs/development/python-modules/betamax-matchers/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 - , betamax, requests_toolbelt }: 2 + , betamax, requests-toolbelt }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "betamax-matchers"; ··· 10 10 sha256 = "07qpwjyq2i2aqhz5iwghnj4pqr2ys5n45v1vmpcfx9r5mhwrsq43"; 11 11 }; 12 12 13 - buildInputs = [ betamax requests_toolbelt ]; 13 + buildInputs = [ betamax requests-toolbelt ]; 14 14 15 15 meta = with lib; { 16 16 homepage = "https://github.com/sigmavirus24/betamax_matchers";
+2 -2
pkgs/development/python-modules/bleach/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytest 5 - , pytestrunner 5 + , pytest-runner 6 6 , six 7 7 , html5lib 8 8 , setuptools ··· 18 18 sha256 = "sha256-mLMXBznl6D3Z3BljPwdHJ62EjL7bYCZwjIrC07aXpDM="; 19 19 }; 20 20 21 - checkInputs = [ pytest pytestrunner ]; 21 + checkInputs = [ pytest pytest-runner ]; 22 22 propagatedBuildInputs = [ packaging six html5lib setuptools ]; 23 23 24 24 # Disable network tests
+1 -1
pkgs/development/python-modules/cairocffi/0_9.nix
··· 8 8 , makeFontsConf 9 9 , freefont_ttf 10 10 , pytest 11 - , pytestrunner 11 + , pytest-runner 12 12 , glibcLocales 13 13 , cairo 14 14 , cffi
+1 -1
pkgs/development/python-modules/cairocffi/default.nix
··· 8 8 , makeFontsConf 9 9 , freefont_ttf 10 10 , pytest 11 - , pytestrunner 11 + , pytest-runner 12 12 , glibcLocales 13 13 , cairo 14 14 , cffi
+1 -1
pkgs/development/python-modules/cairocffi/generic.nix
··· 23 23 fontDirectories = [ freefont_ttf ]; 24 24 }; 25 25 26 - checkInputs = [ numpy pytest pytestrunner glibcLocales ]; 26 + checkInputs = [ numpy pytest pytest-runner glibcLocales ]; 27 27 propagatedBuildInputs = [ cairo cffi ] ++ lib.optional withXcffib xcffib; 28 28 29 29 checkPhase = ''
+1 -1
pkgs/development/python-modules/capturer/default.nix
··· 1 - { stdenv, lib, buildPythonPackage, fetchFromGitHub, humanfriendly, pytestCheckHook, pytestcov }: 1 + { stdenv, lib, buildPythonPackage, fetchFromGitHub, humanfriendly, pytestCheckHook, pytest-cov }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "capturer";
+4 -4
pkgs/development/python-modules/certbot/default.nix
··· 2 2 , buildPythonPackage 3 3 , python, runCommand 4 4 , fetchFromGitHub 5 - , ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface 5 + , configargparse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface 6 6 , dialog, gnureadline 7 - , pytest_xdist, pytestCheckHook, python-dateutil 7 + , pytest-xdist, pytestCheckHook, python-dateutil 8 8 }: 9 9 10 10 buildPythonPackage rec { ··· 21 21 sourceRoot = "source/${pname}"; 22 22 23 23 propagatedBuildInputs = [ 24 - ConfigArgParse 24 + configargparse 25 25 acme 26 26 configobj 27 27 cryptography ··· 42 42 checkInputs = [ 43 43 python-dateutil 44 44 pytestCheckHook 45 - pytest_xdist 45 + pytest-xdist 46 46 ]; 47 47 48 48 pytestFlagsArray = [
+4 -4
pkgs/development/python-modules/cfn-flip/default.nix
··· 5 5 # pythonPackages 6 6 , click 7 7 , pytest 8 - , pytestcov 9 - , pytestrunner 8 + , pytest-cov 9 + , pytest-runner 10 10 , pyyaml 11 11 , six 12 12 }: ··· 30 30 31 31 checkInputs = [ 32 32 pytest 33 - pytestcov 34 - pytestrunner 33 + pytest-cov 34 + pytest-runner 35 35 ]; 36 36 37 37 checkPhase = ''
+2 -2
pkgs/development/python-modules/cftime/default.nix
··· 2 2 , fetchPypi 3 3 , pytestCheckHook 4 4 , coveralls 5 - , pytestcov 5 + , pytest-cov 6 6 , cython 7 7 , numpy 8 8 , python ··· 20 20 checkInputs = [ 21 21 pytestCheckHook 22 22 coveralls 23 - pytestcov 23 + pytest-cov 24 24 ]; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/chardet/2.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, fetchpatch 2 - , pytest, pytestrunner, hypothesis }: 2 + , pytest, pytest-runner, hypothesis }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "chardet"; ··· 18 18 }) 19 19 ]; 20 20 21 - checkInputs = [ pytest pytestrunner hypothesis ]; 21 + checkInputs = [ pytest pytest-runner hypothesis ]; 22 22 23 23 meta = with lib; { 24 24 homepage = "https://github.com/chardet/chardet";
+2 -2
pkgs/development/python-modules/cheroot/default.nix
··· 9 9 , portend 10 10 , pyopenssl 11 11 , pytestCheckHook 12 - , pytestcov 12 + , pytest-cov 13 13 , pytest-mock 14 14 , requests 15 15 , requests-toolbelt ··· 46 46 portend 47 47 pyopenssl 48 48 pytestCheckHook 49 - pytestcov 49 + pytest-cov 50 50 pytest-mock 51 51 requests 52 52 requests-toolbelt
+2 -2
pkgs/development/python-modules/cherrypy/17.nix
··· 1 1 { lib, stdenv, buildPythonPackage, fetchPypi 2 2 , setuptools-scm 3 3 , cheroot, contextlib2, portend, routes, six, zc_lockfile 4 - , backports_unittest-mock, objgraph, pathpy, pytest, pytestcov, backports_functools_lru_cache, requests_toolbelt 4 + , backports_unittest-mock, objgraph, pathpy, pytest, pytest-cov, backports_functools_lru_cache, requests-toolbelt 5 5 }: 6 6 7 7 buildPythonPackage rec { ··· 21 21 nativeBuildInputs = [ setuptools-scm ]; 22 22 23 23 checkInputs = [ 24 - backports_unittest-mock objgraph pathpy pytest pytestcov backports_functools_lru_cache requests_toolbelt 24 + backports_unittest-mock objgraph pathpy pytest pytest-cov backports_functools_lru_cache requests-toolbelt 25 25 ]; 26 26 27 27 checkPhase = ''
+2 -2
pkgs/development/python-modules/cherrypy/default.nix
··· 2 2 , setuptools-scm 3 3 , cheroot, portend, more-itertools, zc_lockfile, routes 4 4 , jaraco_collections 5 - , objgraph, pytest, pytestcov, pathpy, requests_toolbelt, pytest-services 5 + , objgraph, pytest, pytest-cov, pathpy, requests-toolbelt, pytest-services 6 6 , fetchpatch 7 7 }: 8 8 ··· 47 47 ]; 48 48 49 49 checkInputs = [ 50 - objgraph pytest pytestcov pathpy requests_toolbelt pytest-services 50 + objgraph pytest pytest-cov pathpy requests-toolbelt pytest-services 51 51 ]; 52 52 53 53 # Keyboard interrupt ends test suite run
+2 -2
pkgs/development/python-modules/ci-py/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPy27 2 - , pytest, pytestrunner, pytestCheckHook }: 2 + , pytest, pytest-runner, pytestCheckHook }: 3 3 4 4 buildPythonPackage rec { 5 5 version = "1.0.0"; ··· 12 12 sha256 = "12ax07n81vxbyayhwzi1q6x7gfmwmvrvwm1n4ii6qa6fqlp9pzj7"; 13 13 }; 14 14 15 - nativeBuildInputs = [ pytestrunner ]; # pytest-runner included in setup-requires 15 + nativeBuildInputs = [ pytest-runner ]; # pytest-runner included in setup-requires 16 16 checkInputs = [ pytest pytestCheckHook ]; 17 17 18 18 pythonImportsCheck = [ "ci" ];
+2 -2
pkgs/development/python-modules/clickclick/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, isPy36, flake8, click, pyyaml, six, pytestCheckHook, pytestcov }: 1 + { lib, buildPythonPackage, fetchFromGitHub, isPy36, flake8, click, pyyaml, six, pytestCheckHook, pytest-cov }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "clickclick"; ··· 11 11 sha256 = "1rij9ws9nhsmagiy1vclzliiqfkxi006rf65qvrw1k3sm2s8p5g0"; 12 12 }; 13 13 14 - checkInputs = [ pytestCheckHook pytestcov ]; 14 + checkInputs = [ pytestCheckHook pytest-cov ]; 15 15 propagatedBuildInputs = [ flake8 click pyyaml six ]; 16 16 17 17 # test_cli asserts on exact quoting style of output
+2 -2
pkgs/development/python-modules/cookiecutter/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPyPy 2 - , pytest, pytestcov, pytest-mock, freezegun 2 + , pytest, pytest-cov, pytest-mock, freezegun 3 3 , jinja2, future, binaryornot, click, whichcraft, poyo, jinja2_time, requests 4 4 , python-slugify }: 5 5 ··· 15 15 sha256 = "sha256-a5pNcoguJDvgd6c5fQ8fdv5mzz35HzEV27UzDiFPpFc="; 16 16 }; 17 17 18 - checkInputs = [ pytest pytestcov pytest-mock freezegun ]; 18 + checkInputs = [ pytest pytest-cov pytest-mock freezegun ]; 19 19 propagatedBuildInputs = [ 20 20 jinja2 future binaryornot click whichcraft poyo jinja2_time requests python-slugify 21 21 ];
+2 -2
pkgs/development/python-modules/coveralls/default.nix
··· 4 4 , isPy27 5 5 , mock 6 6 , pytest 7 - , pytestrunner 7 + , pytest-runner 8 8 , sh 9 9 , coverage 10 10 , docopt ··· 33 33 ]; 34 34 35 35 buildInputs = [ 36 - pytestrunner 36 + pytest-runner 37 37 ]; 38 38 39 39 postPatch = ''
+3 -3
pkgs/development/python-modules/cssselect2/default.nix
··· 4 4 , fetchPypi 5 5 , tinycss2 6 6 , pytest 7 - , pytestrunner 8 - , pytestcov 7 + , pytest-runner 8 + , pytest-cov 9 9 , pytest-flake8 10 10 , pytest-isort 11 11 }: ··· 22 22 23 23 propagatedBuildInputs = [ tinycss2 ]; 24 24 25 - checkInputs = [ pytest pytestrunner pytestcov pytest-flake8 pytest-isort ]; 25 + checkInputs = [ pytest pytest-runner pytest-cov pytest-flake8 pytest-isort ]; 26 26 27 27 meta = with lib; { 28 28 description = "CSS selectors for Python ElementTree";
+2 -2
pkgs/development/python-modules/daphne/default.nix
··· 1 1 { lib, stdenv, buildPythonPackage, isPy3k, fetchFromGitHub 2 - , asgiref, autobahn, twisted, pytestrunner 2 + , asgiref, autobahn, twisted, pytest-runner 3 3 , hypothesis, pytest, pytest-asyncio, service-identity, pyopenssl 4 4 }: 5 5 buildPythonPackage rec { ··· 15 15 sha256 = "sha256-KWkMV4L7bA2Eo/u4GGif6lmDNrZAzvYyDiyzyWt9LeI="; 16 16 }; 17 17 18 - nativeBuildInputs = [ pytestrunner ]; 18 + nativeBuildInputs = [ pytest-runner ]; 19 19 20 20 propagatedBuildInputs = [ asgiref autobahn twisted service-identity pyopenssl ]; 21 21
+2 -2
pkgs/development/python-modules/dbus-next/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , python 5 - , dbus, dbus-python, pytest, pytestcov, pytest-asyncio, pytest-timeout 5 + , dbus, dbus-python, pytest, pytest-cov, pytest-asyncio, pytest-timeout 6 6 }: 7 7 8 8 buildPythonPackage rec { ··· 20 20 dbus 21 21 dbus-python 22 22 pytest 23 - pytestcov 23 + pytest-cov 24 24 pytest-asyncio 25 25 pytest-timeout 26 26 ];
+2 -2
pkgs/development/python-modules/debugpy/default.nix
··· 8 8 , flask 9 9 , psutil 10 10 , pytest-timeout 11 - , pytest_xdist 11 + , pytest-xdist 12 12 , pytestCheckHook 13 13 , requests 14 14 , isPy27 ··· 75 75 flask 76 76 psutil 77 77 pytest-timeout 78 - pytest_xdist 78 + pytest-xdist 79 79 pytestCheckHook 80 80 requests 81 81 ] ++ lib.optionals (!isPy27) [
+2 -2
pkgs/development/python-modules/defcon/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, pythonOlder 2 2 , fonttools, setuptools-scm 3 - , pytest, pytestrunner, lxml, fs, unicodedata2, fontpens 3 + , pytest, pytest-runner, lxml, fs, unicodedata2, fontpens 4 4 }: 5 5 6 6 buildPythonPackage rec { ··· 25 25 26 26 checkInputs = [ 27 27 pytest 28 - pytestrunner 28 + pytest-runner 29 29 lxml 30 30 fs 31 31 unicodedata2
+2 -2
pkgs/development/python-modules/diceware/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 - , pytestrunner 2 + , pytest-runner 3 3 , setuptools 4 4 , coverage, pytest 5 5 }: ··· 13 13 sha256 = "0klb0ysybzlh2wihvir82hgq62v0jjmlcqklwajyms7c0p529yby"; 14 14 }; 15 15 16 - nativeBuildInputs = [ pytestrunner ]; 16 + nativeBuildInputs = [ pytest-runner ]; 17 17 18 18 propagatedBuildInputs = [ setuptools ]; 19 19
+4 -4
pkgs/development/python-modules/diskcache/default.nix
··· 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 5 , pytestCheckHook 6 - , pytestcov 7 - , pytest_xdist 6 + , pytest-cov 7 + , pytest-xdist 8 8 , pytest-django 9 9 , mock 10 10 }: ··· 22 22 23 23 checkInputs = [ 24 24 pytestCheckHook 25 - pytestcov 26 - pytest_xdist 25 + pytest-cov 26 + pytest-xdist 27 27 pytest-django 28 28 mock 29 29 ];
+2 -2
pkgs/development/python-modules/django-extensions/default.nix
··· 5 5 , mock 6 6 , pygments 7 7 , pytest 8 - , pytestcov 8 + , pytest-cov 9 9 , pytest-django 10 10 , python-dateutil 11 11 , shortuuid ··· 40 40 mock 41 41 pygments # not explicitly declared in setup.py, but some tests require it 42 42 pytest 43 - pytestcov 43 + pytest-cov 44 44 pytest-django 45 45 python-dateutil 46 46 shortuuid
+2 -2
pkgs/development/python-modules/django_guardian/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 2 , django_environ, mock, django 3 - , pytest, pytestrunner, pytest-django 3 + , pytest, pytest-runner, pytest-django 4 4 }: 5 5 buildPythonPackage rec { 6 6 pname = "django-guardian"; ··· 11 11 sha256 = "c58a68ae76922d33e6bdc0e69af1892097838de56e93e78a8361090bcd9f89a0"; 12 12 }; 13 13 14 - checkInputs = [ pytest pytestrunner pytest-django django_environ mock ]; 14 + checkInputs = [ pytest pytest-runner pytest-django django_environ mock ]; 15 15 propagatedBuildInputs = [ django ]; 16 16 17 17 meta = with lib; {
+2 -2
pkgs/development/python-modules/dockerfile-parse/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, six, pytestcov, pytest }: 1 + { lib, buildPythonPackage, fetchPypi, six, pytest-cov, pytest }: 2 2 3 3 buildPythonPackage rec { 4 4 version = "1.2.0"; ··· 15 15 16 16 propagatedBuildInputs = [ six ]; 17 17 18 - checkInputs = [ pytestcov pytest ]; 18 + checkInputs = [ pytest-cov pytest ]; 19 19 20 20 meta = with lib; { 21 21 description = "Python library for parsing Dockerfile files";
+2 -2
pkgs/development/python-modules/dogpile.cache/default.nix
··· 3 3 , fetchPypi 4 4 , pythonOlder 5 5 , pytest 6 - , pytestcov 6 + , pytest-cov 7 7 , mock 8 8 , Mako 9 9 , decorator ··· 33 33 pytest 34 34 ''; 35 35 36 - checkInputs = [ pytest pytestcov mock Mako ]; 36 + checkInputs = [ pytest pytest-cov mock Mako ]; 37 37 38 38 propagatedBuildInputs = [ decorator stevedore ]; 39 39
+2 -2
pkgs/development/python-modules/dropbox/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 - , pytestrunner, requests, urllib3, mock, setuptools, stone }: 2 + , pytest-runner, requests, urllib3, mock, setuptools, stone }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "dropbox"; ··· 18 18 # Set DROPBOX_TOKEN environment variable to a valid token. 19 19 doCheck = false; 20 20 21 - nativeBuildInputs = [ pytestrunner ]; 21 + nativeBuildInputs = [ pytest-runner ]; 22 22 propagatedBuildInputs = [ requests urllib3 mock setuptools stone ]; 23 23 24 24 meta = with lib; {
+4 -4
pkgs/development/python-modules/dyn/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pytest, pytestcov, mock 2 - , pytest_xdist, covCore, glibcLocales }: 1 + { lib, buildPythonPackage, fetchPypi, pytest, pytest-cov, mock 2 + , pytest-xdist, covCore, glibcLocales }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "dyn"; ··· 14 14 15 15 checkInputs = [ 16 16 pytest 17 - pytestcov 17 + pytest-cov 18 18 mock 19 - pytest_xdist 19 + pytest-xdist 20 20 covCore 21 21 ]; 22 22 # Disable checks because they are not stateless and require internet access.
+2 -2
pkgs/development/python-modules/easysnmp/default.nix
··· 5 5 , net-snmp 6 6 , openssl 7 7 , pytest 8 - , pytestcov 8 + , pytest-cov 9 9 , pytest-flake8 10 10 , pytest-sugar 11 11 , termcolor ··· 27 27 28 28 checkInputs = [ 29 29 pytest 30 - pytestcov 30 + pytest-cov 31 31 pytest-flake8 32 32 pytest-sugar 33 33 termcolor
+2 -2
pkgs/development/python-modules/fastpair/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, pytestrunner, pytest, scipy, pytestCheckHook }: 1 + { lib, buildPythonPackage, fetchFromGitHub, pytest-runner, pytest, scipy, pytestCheckHook }: 2 2 3 3 buildPythonPackage { 4 4 pname = "fastpair"; ··· 11 11 sha256 = "1l8zgr8awg27lhlkpa2dsvghrb7b12jl1bkgpzg5q7pg8nizl9mx"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pytestrunner ]; 14 + nativeBuildInputs = [ pytest-runner ]; 15 15 16 16 checkInputs = [ pytest pytestCheckHook ]; 17 17
+2 -2
pkgs/development/python-modules/fastparquet/default.nix
··· 5 5 , numba 6 6 , numpy 7 7 , pandas 8 - , pytestrunner 8 + , pytest-runner 9 9 , cramjam 10 10 , fsspec 11 11 , thrift ··· 23 23 hash = "sha256-wSJ6PqW7c8DJCsGuPhXaVGM2s/1dZhLjG4C0JWPcjhY="; 24 24 }; 25 25 26 - nativeBuildInputs = [ pytestrunner ]; 26 + nativeBuildInputs = [ pytest-runner ]; 27 27 propagatedBuildInputs = [ cramjam fsspec numba numpy pandas thrift ]; 28 28 checkInputs = [ pytestCheckHook ]; 29 29
+2 -2
pkgs/development/python-modules/favicon/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, requests, beautifulsoup4, pytest, requests-mock, 2 - pytestrunner }: 2 + pytest-runner }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "favicon"; ··· 10 10 sha256 = "6d6b5a78de2a0d0084589f687f384b2ecd6a6527093fec564403b1a30605d7a8"; 11 11 }; 12 12 13 - buildInputs = [ pytestrunner ]; 13 + buildInputs = [ pytest-runner ]; 14 14 checkInputs = [ pytest requests-mock ]; 15 15 propagatedBuildInputs = [ requests beautifulsoup4 ]; 16 16
+2 -2
pkgs/development/python-modules/ffmpeg-python/default.nix
··· 5 5 , pytestCheckHook 6 6 , ffmpeg 7 7 , future 8 - , pytestrunner 8 + , pytest-runner 9 9 , pytest-mock 10 10 }: 11 11 ··· 27 27 }) 28 28 ]; 29 29 30 - buildInputs = [ pytestrunner ]; 30 + buildInputs = [ pytest-runner ]; 31 31 propagatedBuildInputs = [ future ]; 32 32 checkInputs = [ pytestCheckHook pytest-mock ]; 33 33
+2 -2
pkgs/development/python-modules/flake8/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, pythonOlder 2 - , mock, pytest, pytestrunner 2 + , mock, pytest, pytest-runner 3 3 , configparser, enum34, mccabe, pycodestyle, pyflakes, functools32, typing ? null, importlib-metadata 4 4 }: 5 5 ··· 12 12 sha256 = "07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b"; 13 13 }; 14 14 15 - checkInputs = [ pytest mock pytestrunner ]; 15 + checkInputs = [ pytest mock pytest-runner ]; 16 16 propagatedBuildInputs = [ pyflakes pycodestyle mccabe ] 17 17 ++ lib.optionals (pythonOlder "3.2") [ configparser functools32 ] 18 18 ++ lib.optionals (pythonOlder "3.4") [ enum34 ]
+2 -2
pkgs/development/python-modules/flask-caching/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy27, flask, pytestCheckHook, pytestcov, pytest-xprocess, pytestcache }: 1 + { lib, buildPythonPackage, fetchPypi, isPy27, flask, pytestCheckHook, pytest-cov, pytest-xprocess, pytestcache }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "Flask-Caching"; ··· 12 12 13 13 propagatedBuildInputs = [ flask ]; 14 14 15 - checkInputs = [ pytestCheckHook pytestcov pytest-xprocess pytestcache ]; 15 + checkInputs = [ pytestCheckHook pytest-cov pytest-xprocess pytestcache ]; 16 16 17 17 disabledTests = [ 18 18 # backend_cache relies on pytest-cache, which is a stale package from 2013
+5 -5
pkgs/development/python-modules/flickrapi/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , requests 5 - , requests_toolbelt 5 + , requests-toolbelt 6 6 , requests_oauthlib 7 7 , pytest 8 - , pytestrunner 9 - , pytestcov 8 + , pytest-runner 9 + , pytest-cov 10 10 , responses 11 11 }: 12 12 ··· 19 19 sha256 = "03g2z21k6nhxgwysjrgnxj9m1yg25mnnkr10gpyfhfkd9w77pcpz"; 20 20 }; 21 21 22 - propagatedBuildInputs = [ requests requests_toolbelt requests_oauthlib ]; 22 + propagatedBuildInputs = [ requests requests-toolbelt requests_oauthlib ]; 23 23 24 - checkInputs = [ pytest pytestrunner pytestcov responses ]; 24 + checkInputs = [ pytest pytest-runner pytest-cov responses ]; 25 25 doCheck = false; # Otherwise: 26 26 # ========================= no tests ran in 0.01 seconds ========================= 27 27 # builder for '/nix/store/c8a58v6aa18zci08q2l53s12ywn8jqhq-python3.6-flickrapi-2.4.0.drv' failed with exit code 5
+2 -2
pkgs/development/python-modules/flufl/lock.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook 2 - , atpublic, psutil, pytestcov, sybil 2 + , atpublic, psutil, pytest-cov, sybil 3 3 }: 4 4 5 5 buildPythonPackage rec { ··· 12 12 }; 13 13 14 14 propagatedBuildInputs = [ atpublic psutil ]; 15 - checkInputs = [ pytestCheckHook pytestcov sybil ]; 15 + checkInputs = [ pytestCheckHook pytest-cov sybil ]; 16 16 17 17 # disable code coverage checks for all OS. Upstream does not enforce these 18 18 # checks on Darwin, and code coverage cannot be improved downstream nor is it
+2 -2
pkgs/development/python-modules/fontmath/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPy27 2 2 , fonttools, setuptools-scm 3 - , pytest, pytestrunner 3 + , pytest, pytest-runner 4 4 }: 5 5 6 6 buildPythonPackage rec { ··· 17 17 nativeBuildInputs = [ setuptools-scm ]; 18 18 19 19 propagatedBuildInputs = [ fonttools ]; 20 - checkInputs = [ pytest pytestrunner ]; 20 + checkInputs = [ pytest pytest-runner ]; 21 21 22 22 meta = with lib; { 23 23 description = "A collection of objects that implement fast font, glyph, etc. math";
+2 -2
pkgs/development/python-modules/genanki/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPy3k 2 - , cached-property, frozendict, pystache, pyyaml, pytest, pytestrunner 2 + , cached-property, frozendict, pystache, pyyaml, pytest, pytest-runner 3 3 }: 4 4 5 5 buildPythonPackage rec { ··· 12 12 }; 13 13 14 14 propagatedBuildInputs = [ 15 - pytestrunner 15 + pytest-runner 16 16 cached-property 17 17 frozendict 18 18 pystache
+2 -2
pkgs/development/python-modules/gidgethub/default.nix
··· 3 3 , fetchPypi 4 4 , pythonOlder 5 5 , setuptools 6 - , pytestrunner 6 + , pytest-runner 7 7 , pytest 8 8 , pytest-asyncio 9 9 , twisted ··· 25 25 sha256 = "3efbd6998600254ec7a2869318bd3ffde38edc3a0d37be0c14bc46b45947b682"; 26 26 }; 27 27 28 - nativeBuildInputs = [ setuptools pytestrunner ]; 28 + nativeBuildInputs = [ setuptools pytest-runner ]; 29 29 checkInputs = [ pytest pytest-asyncio twisted treq tornado aiohttp ]; 30 30 propagatedBuildInputs = [ 31 31 uritemplate
+2 -2
pkgs/development/python-modules/gradient/default.nix
··· 15 15 , pyopenssl 16 16 , pyyaml 17 17 , requests 18 - , requests_toolbelt 18 + , requests-toolbelt 19 19 , terminaltables 20 20 , websocket-client 21 21 }: ··· 53 53 pyopenssl 54 54 pyyaml 55 55 requests 56 - requests_toolbelt 56 + requests-toolbelt 57 57 terminaltables 58 58 websocket-client 59 59 ];
+2 -2
pkgs/development/python-modules/grandalf/default.nix
··· 4 4 , pyparsing 5 5 , future 6 6 , pytest 7 - , pytestrunner 7 + , pytest-runner 8 8 }: 9 9 10 10 buildPythonPackage rec { ··· 24 24 future 25 25 ]; 26 26 27 - checkInputs = [ pytest pytestrunner ]; 27 + checkInputs = [ pytest pytest-runner ]; 28 28 29 29 patches = [ ./no-setup-requires-pytestrunner.patch ]; 30 30
+2 -2
pkgs/development/python-modules/graspologic/default.nix
··· 3 3 , isPy27 4 4 , fetchFromGitHub 5 5 , pytestCheckHook 6 - , pytestcov 6 + , pytest-cov 7 7 , hyppo 8 8 , matplotlib 9 9 , networkx ··· 36 36 seaborn 37 37 ]; 38 38 39 - checkInputs = [ pytestCheckHook pytestcov ]; 39 + checkInputs = [ pytestCheckHook pytest-cov ]; 40 40 pytestFlagsArray = [ "tests" "--ignore=docs" "--ignore=tests/test_sklearn.py" ]; 41 41 disabledTests = [ "gridplot_outputs" ]; 42 42
+2 -2
pkgs/development/python-modules/guessit/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , pytestrunner 4 + , pytest-runner 5 5 , python-dateutil 6 6 , babelfish 7 7 , rebulk ··· 18 18 19 19 # Tests require more packages. 20 20 doCheck = false; 21 - buildInputs = [ pytestrunner ]; 21 + buildInputs = [ pytest-runner ]; 22 22 propagatedBuildInputs = [ 23 23 python-dateutil babelfish rebulk 24 24 ];
+2 -2
pkgs/development/python-modules/gunicorn/19.nix
··· 2 2 , coverage 3 3 , mock 4 4 , pytest 5 - , pytestcov 5 + , pytest-cov 6 6 , setuptools 7 7 }: 8 8 ··· 17 17 18 18 propagatedBuildInputs = [ setuptools ]; 19 19 20 - checkInputs = [ pytest mock pytestcov coverage ]; 20 + checkInputs = [ pytest mock pytest-cov coverage ]; 21 21 22 22 prePatch = '' 23 23 substituteInPlace requirements_test.txt --replace "==" ">=" \
+2 -2
pkgs/development/python-modules/gunicorn/default.nix
··· 2 2 , coverage 3 3 , mock 4 4 , pytest 5 - , pytestcov 5 + , pytest-cov 6 6 , setuptools 7 7 }: 8 8 ··· 18 18 19 19 propagatedBuildInputs = [ setuptools ]; 20 20 21 - checkInputs = [ pytest mock pytestcov coverage ]; 21 + checkInputs = [ pytest mock pytest-cov coverage ]; 22 22 23 23 prePatch = '' 24 24 substituteInPlace requirements_test.txt --replace "==" ">=" \
+3 -3
pkgs/development/python-modules/hickle/default.nix
··· 9 9 , pandas 10 10 , codecov 11 11 , pytest 12 - , pytestcov 13 - , pytestrunner 12 + , pytest-cov 13 + , pytest-runner 14 14 , coveralls 15 15 , twine 16 16 , check-manifest ··· 36 36 37 37 doCheck = false; # incompatible with latest astropy 38 38 checkInputs = [ 39 - pytest pytestcov pytestrunner coveralls scipy pandas astropy twine check-manifest codecov 39 + pytest pytest-cov pytest-runner coveralls scipy pandas astropy twine check-manifest codecov 40 40 ]; 41 41 42 42 pythonImportsCheck = [ "hickle" ];
+2 -2
pkgs/development/python-modules/homepluscontrol/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "homepluscontrol"; 14 - version = "0.0.5"; 14 + version = "0.0.61"; 15 15 disabled = pythonOlder "3.6"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "chemaaa"; 19 19 repo = pname; 20 20 rev = version; 21 - sha256 = "1nd3a7nhh1xb70cdh2h2bimwbffvpc3457smyzr9fqkjwfbcrr93"; 21 + sha256 = "1g61xj417dz1nz5g5ic8rs34fp424zvbgsymry1zldg3gskaqgvk"; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/httpcore/default.nix
··· 8 8 , pproxy 9 9 , pytest-asyncio 10 10 , pytestCheckHook 11 - , pytestcov 11 + , pytest-cov 12 12 , sniffio 13 13 , trio 14 14 , trustme ··· 38 38 pproxy 39 39 pytest-asyncio 40 40 pytestCheckHook 41 - pytestcov 41 + pytest-cov 42 42 trio 43 43 trustme 44 44 uvicorn
+2 -2
pkgs/development/python-modules/httpx/default.nix
··· 11 11 , pytestCheckHook 12 12 , pytest-asyncio 13 13 , pytest-trio 14 - , pytestcov 14 + , pytest-cov 15 15 , trustme 16 16 , uvicorn 17 17 }: ··· 41 41 pytestCheckHook 42 42 pytest-asyncio 43 43 pytest-trio 44 - pytestcov 44 + pytest-cov 45 45 trustme 46 46 uvicorn 47 47 ];
+2 -2
pkgs/development/python-modules/hypothesis/2.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub 2 2 , isPy3k, attrs, coverage, enum34, pexpect 3 - , doCheck ? true, pytest, pytest_xdist, flaky, mock 3 + , doCheck ? true, pytest, pytest-xdist, flaky, mock 4 4 , sortedcontainers 5 5 }: 6 6 buildPythonPackage rec { ··· 29 29 sortedcontainers 30 30 ] ++ lib.optional (!isPy3k) enum34; 31 31 32 - checkInputs = [ pytest pytest_xdist flaky mock pexpect ]; 32 + checkInputs = [ pytest pytest-xdist flaky mock pexpect ]; 33 33 inherit doCheck; 34 34 35 35 checkPhase = ''
+2 -2
pkgs/development/python-modules/hyppo/default.nix
··· 2 2 , buildPythonPackage 3 3 , isPy27 4 4 , fetchFromGitHub 5 - , pytestCheckHook , pytestcov , numba 5 + , pytestCheckHook , pytest-cov , numba 6 6 , numpy 7 7 , scikit-learn 8 8 , scipy ··· 30 30 scipy 31 31 ]; 32 32 33 - checkInputs = [ pytestCheckHook pytestcov matplotlib seaborn ]; 33 + checkInputs = [ pytestCheckHook pytest-cov matplotlib seaborn ]; 34 34 disabledTestPaths = [ 35 35 "docs" 36 36 "benchmarks"
+2 -2
pkgs/development/python-modules/ibm-cloud-sdk-core/default.nix
··· 5 5 , pyjwt 6 6 , pylint 7 7 , pytestCheckHook 8 - , pytestcov 8 + , pytest-cov 9 9 , python-dateutil 10 10 , requests 11 11 , responses ··· 25 25 codecov 26 26 pylint 27 27 pytestCheckHook 28 - pytestcov 28 + pytest-cov 29 29 responses 30 30 tox 31 31 ];
+2 -2
pkgs/development/python-modules/ignite/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , pytestCheckHook 5 - , pytest_xdist 5 + , pytest-xdist 6 6 , pythonOlder 7 7 , matplotlib 8 8 , mock ··· 23 23 sha256 = "057v8v5p2picmgiidr9lzjbh7nj54pv95m6lyya3y7dw4vzaamij"; 24 24 }; 25 25 26 - checkInputs = [ pytestCheckHook matplotlib mock pytest_xdist ]; 26 + checkInputs = [ pytestCheckHook matplotlib mock pytest-xdist ]; 27 27 propagatedBuildInputs = [ pytorch scikit-learn tqdm pynvml ]; 28 28 29 29 # runs succesfully in 3.9, however, async isn't correctly closed so it will fail after test suite.
+2 -2
pkgs/development/python-modules/image-match/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, pytestrunner, scikitimage }: 1 + { lib, buildPythonPackage, fetchFromGitHub, pytest-runner, scikitimage }: 2 2 3 3 buildPythonPackage { 4 4 pname = "image-match"; ··· 11 11 sha256 = "0vlmpidmhkpgdzw2k03x5layhijcrjpmyfd93yv2ls77ihz00ix5"; 12 12 }; 13 13 14 - buildInputs = [ pytestrunner ]; 14 + buildInputs = [ pytest-runner ]; 15 15 16 16 propagatedBuildInputs = [ 17 17 scikitimage
+2 -2
pkgs/development/python-modules/inform/default.nix
··· 3 3 , six 4 4 , hypothesis 5 5 , pytest 6 - , pytestrunner 6 + , pytest-runner 7 7 , pytestCheckHook 8 8 }: 9 9 ··· 18 18 sha256 = "114cyff00j9r7qm2ld4w1a4kklr5gx570vk67p56gpr2553dkmly"; 19 19 }; 20 20 21 - nativeBuildInputs = [ pytestrunner ]; 21 + nativeBuildInputs = [ pytest-runner ]; 22 22 propagatedBuildInputs = [ arrow six ]; 23 23 24 24 checkInputs = [ pytest hypothesis ];
+2 -2
pkgs/development/python-modules/inquirer/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, python-editor, readchar, blessed, pytest, pytestcov, pexpect, pytest-mock }: 1 + { lib, buildPythonPackage, fetchFromGitHub, python-editor, readchar, blessed, pytest, pytest-cov, pexpect, pytest-mock }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "inquirer"; ··· 20 20 --replace "readchar==2.0.1" "readchar>=2.0.0" 21 21 ''; 22 22 23 - checkInputs = [ pytest pytestcov pexpect pytest-mock ]; 23 + checkInputs = [ pytest pytest-cov pexpect pytest-mock ]; 24 24 25 25 checkPhase = '' 26 26 pytest --cov-report=term-missing --cov inquirer --no-cov-on-fail tests/unit tests/integration
+2 -2
pkgs/development/python-modules/iocapture/default.nix
··· 3 3 , fetchPypi 4 4 , flexmock 5 5 , pytest 6 - , pytestcov 6 + , pytest-cov 7 7 , six 8 8 }: 9 9 ··· 19 19 checkInputs = [ 20 20 flexmock 21 21 pytest 22 - pytestcov 22 + pytest-cov 23 23 six 24 24 ]; 25 25
+2 -2
pkgs/development/python-modules/ipydatawidgets/default.nix
··· 3 3 , fetchPypi 4 4 , isPy27 5 5 , pytest 6 - , pytestcov 6 + , pytest-cov 7 7 , nbval 8 8 , ipywidgets 9 9 , numpy ··· 29 29 traittypes 30 30 ]; 31 31 32 - checkInputs = [ pytest pytestcov nbval ]; 32 + checkInputs = [ pytest pytest-cov nbval ]; 33 33 34 34 checkPhase = "pytest ipydatawidgets/tests"; 35 35
+2 -2
pkgs/development/python-modules/jedi/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, fetchPypi, pytest, glibcLocales, tox, pytestcov, parso }: 1 + { lib, buildPythonPackage, fetchFromGitHub, fetchPypi, pytest, glibcLocales, tox, pytest-cov, parso }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "jedi"; ··· 14 14 fetchSubmodules = true; 15 15 }; 16 16 17 - checkInputs = [ pytest glibcLocales tox pytestcov ]; 17 + checkInputs = [ pytest glibcLocales tox pytest-cov ]; 18 18 19 19 propagatedBuildInputs = [ parso ]; 20 20
+4 -4
pkgs/development/python-modules/jira/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPy3k 2 - , pytest, pytestrunner, pbr, glibcLocales , pytestcov 3 - , requests, requests_oauthlib, requests_toolbelt, defusedxml 2 + , pytest, pytest-runner, pbr, glibcLocales , pytest-cov 3 + , requests, requests_oauthlib, requests-toolbelt, defusedxml 4 4 , ipython 5 5 }: 6 6 ··· 15 15 sha256 = "e2a94adff98e45b29ded030adc76103eab34fa7d4d57303f211f572bedba0e93"; 16 16 }; 17 17 18 - buildInputs = [ glibcLocales pytest pytestcov pytestrunner pbr ]; 19 - propagatedBuildInputs = [ requests requests_oauthlib requests_toolbelt defusedxml pbr ipython ]; 18 + buildInputs = [ glibcLocales pytest pytest-cov pytest-runner pbr ]; 19 + propagatedBuildInputs = [ requests requests_oauthlib requests-toolbelt defusedxml pbr ipython ]; 20 20 21 21 # impure tests because of connectivity attempts to jira servers 22 22 doCheck = false;
+2 -2
pkgs/development/python-modules/jsonlines/default.nix
··· 1 1 { lib, fetchFromGitHub, buildPythonPackage, six 2 - , flake8, pep8-naming, pytest, pytestcov }: 2 + , flake8, pep8-naming, pytest, pytest-cov }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "jsonlines"; ··· 14 14 15 15 propagatedBuildInputs = [ six ]; 16 16 17 - checkInputs = [ flake8 pep8-naming pytest pytestcov ]; 17 + checkInputs = [ flake8 pep8-naming pytest pytest-cov ]; 18 18 checkPhase = '' 19 19 pytest 20 20 '';
+1 -1
pkgs/development/python-modules/jupyterlab_server/default.nix
··· 10 10 , jupyter_server 11 11 , openapi-core 12 12 , pytest-tornasync 13 - , pytestcov 13 + , pytest-cov 14 14 , ruamel-yaml 15 15 , strict-rfc3339 16 16 }:
+3 -3
pkgs/development/python-modules/keras/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 - , pytest, pytestcov, pytest_xdist 2 + , pytest, pytest-cov, pytest-xdist 3 3 , six, numpy, scipy, pyyaml, h5py 4 4 , keras-applications, keras-preprocessing 5 5 }: ··· 15 15 16 16 checkInputs = [ 17 17 pytest 18 - pytestcov 19 - pytest_xdist 18 + pytest-cov 19 + pytest-xdist 20 20 ]; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/keyutils/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, keyutils, pytestrunner, pytest }: 1 + { lib, buildPythonPackage, fetchFromGitHub, keyutils, pytest-runner, pytest }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "keyutils"; ··· 13 13 }; 14 14 15 15 buildInputs = [ keyutils ]; 16 - checkInputs = [ pytest pytestrunner ]; 16 + checkInputs = [ pytest pytest-runner ]; 17 17 18 18 meta = { 19 19 description = "A set of python bindings for keyutils";
+2 -2
pkgs/development/python-modules/lazy_import/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 2 , pytest 3 - , pytest_xdist 3 + , pytest-xdist 4 4 , six }: 5 5 6 6 buildPythonPackage rec { ··· 14 14 15 15 checkInputs = [ 16 16 pytest 17 - pytest_xdist 17 + pytest-xdist 18 18 ]; 19 19 20 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/libagent/default.nix
··· 1 1 { lib, fetchFromGitHub, buildPythonPackage, ed25519, ecdsa , semver, mnemonic, 2 - unidecode, mock, pytest , backports-shutil-which, ConfigArgParse, 2 + unidecode, mock, pytest , backports-shutil-which, configargparse, 3 3 python-daemon, pymsgbox }: 4 4 5 5 buildPythonPackage rec { ··· 13 13 sha256 = "16y1y9ahcv3wj7f0v4mfiwzkmn2hz1iv7y13cgr57sxa3ymyqx6c"; 14 14 }; 15 15 16 - propagatedBuildInputs = [ unidecode backports-shutil-which ConfigArgParse 16 + propagatedBuildInputs = [ unidecode backports-shutil-which configargparse 17 17 python-daemon pymsgbox ecdsa ed25519 mnemonic semver ]; 18 18 19 19 checkInputs = [ mock pytest ];
+2 -2
pkgs/development/python-modules/libais/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, 2 - six, pytest, pytestrunner, pytestcov, coverage 2 + six, pytest, pytest-runner, pytest-cov, coverage 3 3 }: 4 4 buildPythonPackage rec { 5 5 pname = "libais"; ··· 13 13 # data files missing 14 14 doCheck = false; 15 15 16 - checkInputs = [ pytest pytestrunner pytestcov coverage ]; 16 + checkInputs = [ pytest pytest-runner pytest-cov coverage ]; 17 17 propagatedBuildInputs = [ six ]; 18 18 19 19 meta = with lib; {
+2 -2
pkgs/development/python-modules/libcloud/2.nix
··· 5 5 , mock 6 6 , pycrypto 7 7 , requests 8 - , pytestrunner 8 + , pytest-runner 9 9 , pytest 10 10 , requests-mock 11 11 , typing ··· 21 21 sha256 = "70096690b24a7832cc5abdfda1954b49fddc1c09a348a1e6caa781ac867ed4c6"; 22 22 }; 23 23 24 - checkInputs = [ mock pytest pytestrunner requests-mock ]; 24 + checkInputs = [ mock pytest pytest-runner requests-mock ]; 25 25 propagatedBuildInputs = [ pycrypto requests ] 26 26 ++ lib.optionals isPy27 [ typing backports_ssl_match_hostname ]; 27 27
+2 -2
pkgs/development/python-modules/libcloud/default.nix
··· 5 5 , mock 6 6 , pycrypto 7 7 , requests 8 - , pytestrunner 8 + , pytest-runner 9 9 , pytest 10 10 , requests-mock 11 11 , typing ··· 20 20 sha256 = "d7450453eaf5904eb4fb4f74cf9f37dc83721a719bce34f5abb336b1a1ab974d"; 21 21 }; 22 22 23 - checkInputs = [ mock pytest pytestrunner requests-mock ]; 23 + checkInputs = [ mock pytest pytest-runner requests-mock ]; 24 24 propagatedBuildInputs = [ pycrypto requests ] ++ lib.optionals isPy27 [ typing ]; 25 25 26 26 preConfigure = "cp libcloud/test/secrets.py-dist libcloud/test/secrets.py";
+2 -2
pkgs/development/python-modules/lomond/default.nix
··· 1 1 { buildPythonPackage, freezegun, fetchFromGitHub, lib, pytestCheckHook 2 - , pytest-mock, pytestrunner, six, tornado_4 }: 2 + , pytest-mock, pytest-runner, six, tornado_4 }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "lomond"; ··· 12 12 sha256 = "0lydq0imala08wxdyg2iwhqa6gcdrn24ah14h91h2zcxjhjk4gv8"; 13 13 }; 14 14 15 - nativeBuildInputs = [ pytestrunner ]; 15 + nativeBuildInputs = [ pytest-runner ]; 16 16 propagatedBuildInputs = [ six ]; 17 17 checkInputs = [ pytestCheckHook freezegun pytest-mock tornado_4 ]; 18 18 # Makes HTTP requests
+2 -2
pkgs/development/python-modules/lyricwikia/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, pytestrunner, six, beautifulsoup4, requests, }: 1 + { lib, fetchPypi, buildPythonPackage, pytest-runner, six, beautifulsoup4, requests, }: 2 2 buildPythonPackage rec { 3 3 pname = "lyricwikia"; 4 4 version = "0.1.11"; ··· 8 8 sha256 = "0l5lkvr3299x79i7skdiggp67rzgax3s00psd1zqkxfysq27jvc8"; 9 9 }; 10 10 11 - buildInputs = [ pytestrunner ]; 11 + buildInputs = [ pytest-runner ]; 12 12 propagatedBuildInputs = [ six beautifulsoup4 requests ]; 13 13 # upstream has no code tests 14 14 doCheck = false;
+2 -2
pkgs/development/python-modules/m3u8/default.nix
··· 1 - { lib, buildPythonPackage, python, fetchFromGitHub, requests, iso8601, bottle, pytest, pytestcov }: 1 + { lib, buildPythonPackage, python, fetchFromGitHub, requests, iso8601, bottle, pytest, pytest-cov }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "m3u8"; ··· 11 11 sha256 = "0cmg993icpsa1b19kljxvjwhs167bsqrs0ad4wnwsi8qq6na5d4p"; 12 12 }; 13 13 14 - checkInputs = [ bottle pytest pytestcov ]; 14 + checkInputs = [ bottle pytest pytest-cov ]; 15 15 16 16 checkPhase = '' 17 17 pytest tests/test_{parser,model,variant_m3u8}.py
+2 -2
pkgs/development/python-modules/marisa-trie/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , cython 5 - , pytestrunner 5 + , pytest-runner 6 6 , pytestCheckHook 7 7 , hypothesis 8 8 }: ··· 23 23 24 24 nativeBuildInputs = [ 25 25 cython 26 - pytestrunner 26 + pytest-runner 27 27 ]; 28 28 29 29 preBuild = ''
+2 -2
pkgs/development/python-modules/markdownsuperscript/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, markdown, 2 - pytest, pytestrunner, pytestcov, coverage }: 2 + pytest, pytest-runner, pytest-cov, coverage }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "MarkdownSuperscript"; ··· 20 20 sed 's/=.*//' -i requirements/*.txt 21 21 ''; 22 22 23 - checkInputs = [ pytest pytestrunner pytestcov coverage ]; 23 + checkInputs = [ pytest pytest-runner pytest-cov coverage ]; 24 24 25 25 meta = with lib; { 26 26 description = "An extension to the Python Markdown package enabling superscript text";
+2 -2
pkgs/development/python-modules/marshmallow-polyfield/default.nix
··· 4 4 , marshmallow 5 5 # Check Inputs 6 6 , pytestCheckHook 7 - , pytestcov 7 + , pytest-cov 8 8 }: 9 9 10 10 buildPythonPackage rec { ··· 23 23 ]; 24 24 25 25 # setuptools check can run, but won't find tests 26 - checkInputs = [ pytestCheckHook pytestcov ]; 26 + checkInputs = [ pytestCheckHook pytest-cov ]; 27 27 28 28 meta = with lib; { 29 29 description = "An unofficial extension to Marshmallow to allow for polymorphic fields";
+2 -2
pkgs/development/python-modules/matchpy/default.nix
··· 5 5 , hopcroftkarp 6 6 , multiset 7 7 , pytest 8 - , pytestrunner 8 + , pytest-runner 9 9 , hypothesis 10 10 , setuptools-scm 11 11 , isPy27 ··· 36 36 --replace "pytest>=3.0,<4.0" "pytest" 37 37 ''; 38 38 39 - buildInputs = [ setuptools-scm pytestrunner ]; 39 + buildInputs = [ setuptools-scm pytest-runner ]; 40 40 checkInputs = [ pytest hypothesis ]; 41 41 propagatedBuildInputs = [ hopcroftkarp multiset ]; 42 42
+2 -2
pkgs/development/python-modules/matrix-client/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , requests 5 - , pytest, pytestrunner, responses 5 + , pytest, pytest-runner, responses 6 6 }: 7 7 8 8 buildPythonPackage rec { ··· 14 14 sha256 = "1mgjd0ymf9mvqjkvgx3xjhxap7rzdmpa21wfy0cxbw2xcswcrqyw"; 15 15 }; 16 16 17 - checkInputs = [ pytest pytestrunner responses ]; 17 + checkInputs = [ pytest pytest-runner responses ]; 18 18 19 19 propagatedBuildInputs = [ requests ]; 20 20
+2 -2
pkgs/development/python-modules/mccabe/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pytest, pytestrunner }: 1 + { lib, buildPythonPackage, fetchPypi, pytest, pytest-runner }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "mccabe"; ··· 9 9 sha256 = "07w3p1qm44hgxf3vvwz84kswpsx6s7kvaibzrsx5dzm0hli1i3fx"; 10 10 }; 11 11 12 - buildInputs = [ pytest pytestrunner ]; 12 + buildInputs = [ pytest pytest-runner ]; 13 13 14 14 meta = with lib; { 15 15 description = "McCabe checker, plugin for flake8";
+2 -2
pkgs/development/python-modules/measurement/default.nix
··· 1 1 { lib, fetchFromGitHub, buildPythonPackage, isPy3k 2 - , sympy, pytest, pytestrunner, sphinx, setuptools-scm }: 2 + , sympy, pytest, pytest-runner, sphinx, setuptools-scm }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "measurement"; ··· 18 18 sed -i 's|use_scm_version=True|version="${version}"|' setup.py 19 19 ''; 20 20 21 - checkInputs = [ pytest pytestrunner ]; 21 + checkInputs = [ pytest pytest-runner ]; 22 22 nativeBuildInputs = [ sphinx setuptools-scm ]; 23 23 propagatedBuildInputs = [ sympy ]; 24 24
+2 -2
pkgs/development/python-modules/mne-python/default.nix
··· 5 5 , numpy 6 6 , scipy 7 7 , pytestCheckHook 8 - , pytestcov 8 + , pytest-cov 9 9 , pytest-timeout 10 10 , h5py 11 11 , matplotlib ··· 34 34 doCheck = false; 35 35 checkInputs = [ 36 36 pytestCheckHook 37 - pytestcov 37 + pytest-cov 38 38 pytest-timeout 39 39 h5py 40 40 matplotlib
+2 -2
pkgs/development/python-modules/multidict/default.nix
··· 1 1 { lib 2 2 , fetchPypi 3 3 , buildPythonPackage 4 - , pytestCheckHook, pytestrunner, pytestcov 4 + , pytestCheckHook, pytest-runner, pytest-cov 5 5 , isPy3k 6 6 }: 7 7 ··· 14 14 sha256 = "25b4e5f22d3a37ddf3effc0710ba692cfc792c2b9edfb9c05aefe823256e84d5"; 15 15 }; 16 16 17 - checkInputs = [ pytestCheckHook pytestrunner pytestcov ]; 17 + checkInputs = [ pytestCheckHook pytest-runner pytest-cov ]; 18 18 19 19 disabled = !isPy3k; 20 20
+2 -2
pkgs/development/python-modules/multiset/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , setuptools-scm 5 - , pytestrunner 5 + , pytest-runner 6 6 , pytest 7 7 }: 8 8 ··· 15 15 sha256 = "4801569c08bfcecfe7b0927b17f079c90f8607aca8fecaf42ded92b737162bc7"; 16 16 }; 17 17 18 - buildInputs = [ setuptools-scm pytestrunner ]; 18 + buildInputs = [ setuptools-scm pytest-runner ]; 19 19 checkInputs = [ pytest ]; 20 20 21 21 meta = with lib; {
+2 -2
pkgs/development/python-modules/mwclient/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub 2 2 , requests, requests_oauthlib, six 3 - , pytest, pytestcache, pytestcov, responses, mock 3 + , pytest, pytestcache, pytest-cov, responses, mock 4 4 }: 5 5 6 6 buildPythonPackage rec { ··· 14 14 sha256 = "120snnsh9n5svfwkyj1w9jrxf99jnqm0jk282yypd3lpyca1l9hj"; 15 15 }; 16 16 17 - checkInputs = [ pytest pytestcache pytestcov responses mock ]; 17 + checkInputs = [ pytest pytestcache pytest-cov responses mock ]; 18 18 19 19 propagatedBuildInputs = [ requests requests_oauthlib six ]; 20 20
+2 -2
pkgs/development/python-modules/mwparserfromhell/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 - , pytestrunner 5 + , pytest-runner 6 6 }: 7 7 8 8 buildPythonPackage rec { ··· 16 16 17 17 checkInputs = [ 18 18 pytestCheckHook 19 - pytestrunner 19 + pytest-runner 20 20 ]; 21 21 22 22 meta = with lib; {
+2 -2
pkgs/development/python-modules/natsort/default.nix
··· 3 3 , pythonOlder 4 4 , fetchPypi 5 5 , pytest 6 - , pytestcov 6 + , pytest-cov 7 7 , pytest-mock 8 8 , hypothesis 9 9 , glibcLocales ··· 17 17 18 18 checkInputs = [ 19 19 pytest 20 - pytestcov 20 + pytest-cov 21 21 pytest-mock 22 22 hypothesis 23 23 glibcLocales
+2 -2
pkgs/development/python-modules/nbdime/default.nix
··· 5 5 , attrs 6 6 , py 7 7 , setuptools 8 - , pytestcov 8 + , pytest-cov 9 9 , pytest-timeout 10 10 , pytest-tornado 11 11 , mock ··· 34 34 35 35 checkInputs = [ 36 36 hypothesis 37 - pytestcov 37 + pytest-cov 38 38 pytest-timeout 39 39 pytest-tornado 40 40 jsonschema
+2 -2
pkgs/development/python-modules/nbval/default.nix
··· 11 11 , glibcLocales 12 12 , matplotlib 13 13 , sympy 14 - , pytestcov 14 + , pytest-cov 15 15 }: 16 16 17 17 buildPythonPackage rec { ··· 27 27 pytestCheckHook 28 28 matplotlib 29 29 sympy 30 - pytestcov 30 + pytest-cov 31 31 ]; 32 32 33 33 buildInputs = [ glibcLocales ];
+2 -2
pkgs/development/python-modules/ndjson/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, watchdog, flake8 2 - , pytest, pytestrunner, coverage, sphinx, twine }: 2 + , pytest, pytest-runner, coverage, sphinx, twine }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "ndjson"; ··· 10 10 sha256 = "v5dGy2uxy1PRcs2n8VTAfHhtZl/yg0Hk5om3lrIp5dY="; 11 11 }; 12 12 13 - checkInputs = [ pytest pytestrunner flake8 twine sphinx coverage watchdog ]; 13 + checkInputs = [ pytest pytest-runner flake8 twine sphinx coverage watchdog ]; 14 14 15 15 meta = with lib; { 16 16 homepage = "https://github.com/rhgrant10/ndjson";
+4 -4
pkgs/development/python-modules/nipype/default.nix
··· 19 19 , pybids 20 20 , pydot 21 21 , pytest 22 - , pytest_xdist 22 + , pytest-xdist 23 23 , pytest-forked 24 24 , rdflib 25 25 , scipy 26 26 , simplejson 27 27 , traits 28 28 , xvfbwrapper 29 - , pytestcov 29 + , pytest-cov 30 30 , codecov 31 31 , sphinx 32 32 # other dependencies ··· 93 93 mock 94 94 pytest 95 95 pytest-forked 96 - pytest_xdist 97 - pytestcov 96 + pytest-xdist 97 + pytest-cov 98 98 which 99 99 ]; 100 100
+2 -2
pkgs/development/python-modules/nix-prefetch-github/default.nix
··· 6 6 , effect 7 7 , git 8 8 , pytestCheckHook 9 - , pytestcov 9 + , pytest-cov 10 10 , pythonOlder 11 11 }: 12 12 ··· 29 29 effect 30 30 ]; 31 31 32 - checkInputs = [ pytestCheckHook pytestcov git ]; 32 + checkInputs = [ pytestCheckHook pytest-cov git ]; 33 33 34 34 # ignore tests which are impure 35 35 disabledTests = [ "network" "requires_nix_build" ];
+2 -2
pkgs/development/python-modules/nplusone/default.nix
··· 1 1 { blinker, buildPythonPackage, fetchFromGitHub, lib, isPy27, six, mock, pytest 2 - , webtest, pytestcov, pytest-django, pytest-pythonpath, flake8, sqlalchemy 2 + , webtest, pytest-cov, pytest-django, pytest-pythonpath, flake8, sqlalchemy 3 3 , flask_sqlalchemy, peewee }: 4 4 5 5 buildPythonPackage rec { ··· 31 31 mock 32 32 pytest 33 33 webtest 34 - pytestcov 34 + pytest-cov 35 35 pytest-django 36 36 pytest-pythonpath 37 37 flake8
+2 -2
pkgs/development/python-modules/numpy-stl/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, cython, numpy, nine, pytest, pytestrunner, python-utils, enum34 }: 1 + { lib, buildPythonPackage, fetchPypi, cython, numpy, nine, pytest, pytest-runner, python-utils, enum34 }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "numpy-stl"; ··· 9 9 sha256 = "411c633d2a03c295d98fb26023a6e7f574ceead04015d06e80cdab20b630a742"; 10 10 }; 11 11 12 - checkInputs = [ pytest pytestrunner ]; 12 + checkInputs = [ pytest pytest-runner ]; 13 13 14 14 checkPhase = "py.test"; 15 15
+2 -2
pkgs/development/python-modules/omegaconf/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder 2 - , pytest, pytestrunner, pyyaml, six, pathlib2, isPy27 }: 2 + , pytest, pytest-runner, pyyaml, six, pathlib2, isPy27 }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "omegaconf"; ··· 13 13 }; 14 14 15 15 checkInputs = [ pytest ]; 16 - buildInputs = [ pytestrunner ]; 16 + buildInputs = [ pytest-runner ]; 17 17 propagatedBuildInputs = [ pyyaml six ] ++ lib.optional isPy27 pathlib2; 18 18 19 19 meta = with lib; {
+2 -2
pkgs/development/python-modules/openapi-schema-validator/default.nix
··· 5 5 , isodate 6 6 , jsonschema 7 7 , pytest-flake8 8 - , pytestcov 8 + , pytest-cov 9 9 , rfc3339-validator 10 10 , six 11 11 , strict-rfc3339 ··· 22 22 23 23 propagatedBuildInputs = [ isodate jsonschema six strict-rfc3339 rfc3339-validator ]; 24 24 25 - checkInputs = [ pytestCheckHook pytestcov pytest-flake8 ]; 25 + checkInputs = [ pytestCheckHook pytest-cov pytest-flake8 ]; 26 26 pythonImportsCheck = [ "openapi_schema_validator" ]; 27 27 28 28 meta = with lib; {
+2 -2
pkgs/development/python-modules/openapi-spec-validator/default.nix
··· 1 1 { lib, buildPythonPackage, isPy27, fetchPypi 2 2 , jsonschema, openapi-schema-validator, pyyaml, six, pathlib 3 - , mock, pytest, pytestcov, pytest-flake8, tox, setuptools }: 3 + , mock, pytest, pytest-cov, pytest-flake8, tox, setuptools }: 4 4 5 5 buildPythonPackage rec { 6 6 pname = "openapi-spec-validator"; ··· 14 14 propagatedBuildInputs = [ jsonschema openapi-schema-validator pyyaml six setuptools ] 15 15 ++ (lib.optionals (isPy27) [ pathlib ]); 16 16 17 - checkInputs = [ mock pytest pytestcov pytest-flake8 tox ]; 17 + checkInputs = [ mock pytest pytest-cov pytest-flake8 tox ]; 18 18 19 19 meta = with lib; { 20 20 homepage = "https://github.com/p1c2u/openapi-spec-validator";
+2 -2
pkgs/development/python-modules/orm/default.nix
··· 5 5 , typesystem 6 6 , aiosqlite 7 7 , pytestCheckHook 8 - , pytestcov 8 + , pytest-cov 9 9 , typing-extensions 10 10 }: 11 11 ··· 28 28 checkInputs = [ 29 29 aiosqlite 30 30 pytestCheckHook 31 - pytestcov 31 + pytest-cov 32 32 typing-extensions 33 33 ]; 34 34
+3 -3
pkgs/development/python-modules/packet-python/default.nix
··· 6 6 7 7 # For tests/setup.py 8 8 , pytest 9 - , pytestrunner 9 + , pytest-runner 10 10 , requests-mock 11 11 }: 12 12 ··· 17 17 inherit pname version; 18 18 sha256 = "4af12f2fbcc9713878ab4ed571e9fda028bc68add34cde0e7226af4d833a4d38"; 19 19 }; 20 - nativeBuildInputs = [ pytestrunner ]; 20 + nativeBuildInputs = [ pytest-runner ]; 21 21 propagatedBuildInputs = [ requests ]; 22 22 checkInputs = [ 23 23 pytest 24 - pytestrunner 24 + pytest-runner 25 25 requests-mock 26 26 ]; 27 27
+2 -2
pkgs/development/python-modules/paho-mqtt/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, isPy3k 2 - , stdenv, pytestrunner, pytest, mock }: 2 + , stdenv, pytest-runner, pytest, mock }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "paho-mqtt"; ··· 18 18 substituteInPlace setup.cfg --replace "--pylama" "" 19 19 ''; 20 20 21 - checkInputs = [ pytestrunner pytest ] ++ lib.optional (!isPy3k) mock; 21 + checkInputs = [ pytest-runner pytest ] ++ lib.optional (!isPy3k) mock; 22 22 23 23 doCheck = !stdenv.isDarwin; 24 24
+2 -2
pkgs/development/python-modules/papermill/default.nix
··· 19 19 , backports_tempfile 20 20 , isPy27 21 21 , pytest 22 - , pytestcov 22 + , pytest-cov 23 23 , pytest-mock 24 24 }: 25 25 ··· 54 54 55 55 checkInputs = [ 56 56 pytest 57 - pytestcov 57 + pytest-cov 58 58 pytest-mock 59 59 ]; 60 60
+2 -2
pkgs/development/python-modules/papis/default.nix
··· 3 3 , pyyaml, chardet, beautifulsoup4, colorama, bibtexparser 4 4 , click, python-slugify, habanero, isbnlib, typing-extensions 5 5 , prompt_toolkit, pygments, stevedore, tqdm, lxml 6 - , python-doi, isPy3k, pytestcov 6 + , python-doi, isPy3k, pytest-cov 7 7 #, optional, dependencies 8 8 , whoosh, pytest 9 9 , stdenv ··· 43 43 doCheck = !stdenv.isDarwin; 44 44 45 45 checkInputs = ([ 46 - pytest pytestcov 46 + pytest pytest-cov 47 47 ]) ++ [ 48 48 xdg-utils 49 49 ];
+2 -2
pkgs/development/python-modules/parse-type/default.nix
··· 1 1 { lib, fetchPypi 2 2 , buildPythonPackage, pythonOlder 3 - , pytest, pytestrunner 3 + , pytest, pytest-runner 4 4 , parse, six, enum34 5 5 }: 6 6 ··· 13 13 sha256 = "02wclgiqky06y36b3q07b7ngpks5j0gmgl6n71ac2j2hscc0nsbz"; 14 14 }; 15 15 16 - checkInputs = [ pytest pytestrunner ]; 16 + checkInputs = [ pytest pytest-runner ]; 17 17 propagatedBuildInputs = [ parse six ] ++ lib.optional (pythonOlder "3.4") enum34; 18 18 19 19 checkPhase = ''
+2 -2
pkgs/development/python-modules/parsedatetime/default.nix
··· 3 3 , fetchPypi 4 4 , isPy27 5 5 , pytest 6 - , pytestrunner 6 + , pytest-runner 7 7 , future 8 8 }: 9 9 ··· 17 17 sha256 = "4cb368fbb18a0b7231f4d76119165451c8d2e35951455dfee97c62a87b04d455"; 18 18 }; 19 19 20 - buildInputs = [ pytest pytestrunner ]; 20 + buildInputs = [ pytest pytest-runner ]; 21 21 propagatedBuildInputs = [ future ]; 22 22 23 23 meta = with lib; {
+2 -2
pkgs/development/python-modules/paste/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , six 5 - , pytestrunner 5 + , pytest-runner 6 6 , pytest 7 7 }: 8 8 ··· 18 18 19 19 propagatedBuildInputs = [ six ]; 20 20 21 - checkInputs = [ pytestrunner pytest ]; 21 + checkInputs = [ pytest-runner pytest ]; 22 22 23 23 # Certain tests require network 24 24 checkPhase = ''
+2 -2
pkgs/development/python-modules/pastedeploy/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , pytestrunner 4 + , pytest-runner 5 5 , pytest 6 6 }: 7 7 ··· 14 14 sha256 = "6dead6ab9823a85d585ef27f878bc647f787edb9ca8da0716aa9f1261b464817"; 15 15 }; 16 16 17 - buildInputs = [ pytestrunner ]; 17 + buildInputs = [ pytest-runner ]; 18 18 19 19 checkInputs = [ pytest ]; 20 20
+2 -2
pkgs/development/python-modules/periodictable/default.nix
··· 1 - {lib, fetchPypi, buildPythonPackage, numpy, pyparsing, pytestcov, pytestCheckHook }: 1 + {lib, fetchPypi, buildPythonPackage, numpy, pyparsing, pytest-cov, pytestCheckHook }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "periodictable"; ··· 11 11 sha256 = "52e925220005c20e97601e7b04ad6cebc271680947ab9adcbb1a796ddbaa0f23"; 12 12 }; 13 13 14 - checkInputs = [ pytestcov pytestCheckHook ]; 14 + checkInputs = [ pytest-cov pytestCheckHook ]; 15 15 16 16 meta = { 17 17 homepage = "https://www.reflectometry.org/danse/software.html";
+2 -2
pkgs/development/python-modules/pglast/default.nix
··· 3 3 , fetchFromGitHub 4 4 , isPy3k 5 5 , setuptools 6 - , pytestcov 6 + , pytest-cov 7 7 , pytest 8 8 }: 9 9 ··· 24 24 25 25 propagatedBuildInputs = [ setuptools ]; 26 26 27 - checkInputs = [ pytest pytestcov ]; 27 + checkInputs = [ pytest pytest-cov ]; 28 28 29 29 pythonImportsCheck = [ "pglast" ]; 30 30
+2 -2
pkgs/development/python-modules/phonemizer/default.nix
··· 7 7 , attrs 8 8 , espeak-ng 9 9 , pytestCheckHook 10 - , pytestcov 10 + , pytest-cov 11 11 }: 12 12 13 13 buildPythonApplication rec { ··· 45 45 46 46 checkInputs = [ 47 47 pytestCheckHook 48 - pytestcov 48 + pytest-cov 49 49 ]; 50 50 51 51 # We tried to package festvial, but were unable to get the backend running,
+2 -2
pkgs/development/python-modules/plaster-pastedeploy/default.nix
··· 1 1 { buildPythonPackage, fetchPypi, fetchpatch 2 2 , plaster, PasteDeploy 3 - , pytest, pytestcov 3 + , pytest, pytest-cov 4 4 }: 5 5 6 6 buildPythonPackage rec { ··· 26 26 ''; 27 27 28 28 propagatedBuildInputs = [ plaster PasteDeploy ]; 29 - checkInputs = [ pytest pytestcov ]; 29 + checkInputs = [ pytest pytest-cov ]; 30 30 }
+2 -2
pkgs/development/python-modules/plaster/default.nix
··· 1 1 { buildPythonPackage, fetchPypi 2 - , pytest, pytestcov 2 + , pytest, pytest-cov 3 3 }: 4 4 5 5 buildPythonPackage rec { ··· 15 15 py.test 16 16 ''; 17 17 18 - checkInputs = [ pytest pytestcov ]; 18 + checkInputs = [ pytest pytest-cov ]; 19 19 }
+2 -2
pkgs/development/python-modules/poetry/default.nix
··· 13 13 , pkginfo 14 14 , poetry-core 15 15 , pytestCheckHook 16 - , pytestcov 16 + , pytest-cov 17 17 , pytest-mock 18 18 , requests 19 19 , requests-toolbelt ··· 71 71 "$out/bin/poetry" completions fish > "$out/share/fish/vendor_completions.d/poetry.fish" 72 72 ''; 73 73 74 - checkInputs = [ pytestCheckHook httpretty pytest-mock pytestcov ]; 74 + checkInputs = [ pytestCheckHook httpretty pytest-mock pytest-cov ]; 75 75 preCheck = "export HOME=$TMPDIR"; 76 76 disabledTests = [ 77 77 # touches network
+1 -1
pkgs/development/python-modules/portalocker/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 2 , pytestCheckHook 3 - , pytestcov 3 + , pytest-cov 4 4 , pytest-flake8 5 5 , pytest-mypy 6 6 , redis
+2 -2
pkgs/development/python-modules/portend/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 - , pytest, setuptools-scm, tempora, pytest-black, pytestcov }: 2 + , pytest, setuptools-scm, tempora, pytest-black, pytest-cov }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "portend"; ··· 18 18 19 19 propagatedBuildInputs = [ tempora ]; 20 20 21 - checkInputs = [ pytest pytest-black pytestcov ]; 21 + checkInputs = [ pytest pytest-black pytest-cov ]; 22 22 23 23 checkPhase = '' 24 24 py.test --deselect=test_portend.py::TestChecker::test_check_port_listening
+4 -4
pkgs/development/python-modules/prance/default.nix
··· 7 7 , six 8 8 , semver 9 9 , pytestCheckHook 10 - , pytestcov 11 - , pytestrunner 10 + , pytest-cov 11 + , pytest-runner 12 12 , openapi-spec-validator 13 13 }: 14 14 ··· 22 22 }; 23 23 24 24 buildInputs = [ 25 - pytestrunner 25 + pytest-runner 26 26 ]; 27 27 28 28 propagatedBuildInputs = [ ··· 35 35 36 36 checkInputs = [ 37 37 pytestCheckHook 38 - pytestcov 38 + pytest-cov 39 39 openapi-spec-validator 40 40 ]; 41 41
+2 -2
pkgs/development/python-modules/praw/6.3.nix
··· 4 4 , betamax-matchers 5 5 , mock 6 6 , six 7 - , pytestrunner 7 + , pytest-runner 8 8 , prawcore 9 9 , pytest 10 10 , requests-toolbelt ··· 24 24 }; 25 25 26 26 nativeBuildInputs = [ 27 - pytestrunner 27 + pytest-runner 28 28 ]; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/prawcore/default.nix
··· 4 4 , requests 5 5 , testfixtures 6 6 , mock 7 - , requests_toolbelt 7 + , requests-toolbelt 8 8 , betamax 9 9 , betamax-serializers 10 10 , betamax-matchers ··· 32 32 betamax 33 33 betamax-serializers 34 34 betamax-matchers 35 - requests_toolbelt 35 + requests-toolbelt 36 36 pytestCheckHook 37 37 ]; 38 38
+2 -2
pkgs/development/python-modules/property-manager/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, humanfriendly, verboselogs, coloredlogs, pytest, pytestcov }: 1 + { lib, buildPythonPackage, fetchFromGitHub, humanfriendly, verboselogs, coloredlogs, pytest, pytest-cov }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "property-manager"; ··· 12 12 }; 13 13 14 14 propagatedBuildInputs = [ coloredlogs humanfriendly verboselogs ]; 15 - checkInputs = [ pytest pytestcov ]; 15 + checkInputs = [ pytest pytest-cov ]; 16 16 17 17 meta = with lib; { 18 18 description = "Useful property variants for Python programming";
+3 -3
pkgs/development/python-modules/psautohint/default.nix
··· 2 2 , fonttools 3 3 , lxml, fs # for fonttools extras 4 4 , setuptools-scm 5 - , pytestCheckHook, pytestcov, pytest_xdist 5 + , pytestCheckHook, pytest-cov, pytest-xdist 6 6 }: 7 7 8 8 buildPythonPackage rec { ··· 31 31 32 32 checkInputs = [ 33 33 pytestCheckHook 34 - pytestcov 35 - pytest_xdist 34 + pytest-cov 35 + pytest-xdist 36 36 ]; 37 37 disabledTests = [ 38 38 # Test that fails on pytest >= v6
+2 -2
pkgs/development/python-modules/py-air-control-exporter/default.nix
··· 1 1 { buildPythonPackage, fetchPypi, flask, isPy27, lib, nixosTests 2 - , prometheus_client, py-air-control, pytestCheckHook, pytestcov, pytestrunner 2 + , prometheus_client, py-air-control, pytestCheckHook, pytest-cov, pytest-runner 3 3 , setuptools-scm }: 4 4 5 5 buildPythonPackage rec { ··· 13 13 }; 14 14 15 15 nativeBuildInputs = [ setuptools-scm ]; 16 - checkInputs = [ pytestCheckHook pytestcov pytestrunner ]; 16 + checkInputs = [ pytestCheckHook pytest-cov pytest-runner ]; 17 17 propagatedBuildInputs = [ flask prometheus_client py-air-control ]; 18 18 19 19 passthru.tests = { inherit (nixosTests.prometheus-exporters) py-air-control; };
+2 -2
pkgs/development/python-modules/py-multibase/default.nix
··· 4 4 , lib 5 5 , morphys 6 6 , pytest 7 - , pytestrunner 7 + , pytest-runner 8 8 , python-baseconv 9 9 , six 10 10 }: ··· 24 24 ''; 25 25 26 26 nativeBuildInputs = [ 27 - pytestrunner 27 + pytest-runner 28 28 ]; 29 29 30 30 propagatedBuildInputs = [
+4 -4
pkgs/development/python-modules/pycategories/default.nix
··· 1 1 { buildPythonPackage 2 2 , callPackage 3 - , pytestcov 3 + , pytest-cov 4 4 , fetchPypi 5 5 , lib 6 6 , pytest 7 7 , pythonOlder 8 - , pytestrunner 8 + , pytest-runner 9 9 }: 10 10 11 11 buildPythonPackage rec { ··· 18 18 sha256 = "bd70ecb5e94e7659e564ea153f0c7673291dc37c526c246800fc08d6c5378099"; 19 19 }; 20 20 21 - nativeBuildInputs = [ pytestrunner ]; 21 + nativeBuildInputs = [ pytest-runner ]; 22 22 23 23 # Is private because the author states it's unmaintained 24 24 # and shouldn't be used in production code 25 25 propagatedBuildInputs = [ (callPackage ./infix.nix { }) ]; 26 26 27 - checkInputs = [ pytest pytestcov ]; 27 + checkInputs = [ pytest pytest-cov ]; 28 28 29 29 meta = with lib; { 30 30 homepage = "https://gitlab.com/danielhones/pycategories";
+2 -2
pkgs/development/python-modules/pydicom/default.nix
··· 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 5 , isPy27 6 - , pytestrunner 6 + , pytest-runner 7 7 , pytestCheckHook 8 8 , numpy 9 9 , pillow ··· 36 36 37 37 propagatedBuildInputs = [ numpy pillow ]; 38 38 39 - checkInputs = [ pytestrunner pytestCheckHook ]; 39 + checkInputs = [ pytest-runner pytestCheckHook ]; 40 40 41 41 # Setting $HOME to prevent pytest to try to create a folder inside 42 42 # /homeless-shelter which is read-only.
+2 -2
pkgs/development/python-modules/pyee/default.nix
··· 2 2 , fetchPypi 3 3 , lib 4 4 , vcversioner 5 - , pytestrunner 5 + , pytest-runner 6 6 , mock 7 7 , pytest 8 8 , pytest-asyncio ··· 35 35 pytest 36 36 pytest-asyncio 37 37 pytest-trio 38 - pytestrunner 38 + pytest-runner 39 39 twisted 40 40 ] ++ lib.optional isPy27 [ 41 41 attrs
+2 -2
pkgs/development/python-modules/pygal/default.nix
··· 6 6 , flask 7 7 , pyquery 8 8 , pytest 9 - , pytestrunner 9 + , pytest-runner 10 10 , cairosvg 11 11 , tinycss 12 12 , cssselect ··· 38 38 39 39 # Should be a check input, but upstream lists it under "setup_requires". 40 40 # https://github.com/Kozea/pygal/issues/430 41 - pytestrunner 41 + pytest-runner 42 42 ]; 43 43 44 44 checkInputs = [
+2 -2
pkgs/development/python-modules/pylint/1.9.nix
··· 1 1 { stdenv, lib, buildPythonPackage, fetchPypi, astroid, six, isort, 2 2 mccabe, configparser, backports_functools_lru_cache, singledispatch, 3 - pytest, pytestrunner, setuptools }: 3 + pytest, pytest-runner, setuptools }: 4 4 5 5 buildPythonPackage rec { 6 6 pname = "pylint"; ··· 11 11 sha256 = "004kfapkqxqy2s85pmddqv0fabxdxywxrlbi549p0v237pr2v94p"; 12 12 }; 13 13 14 - checkInputs = [ pytest pytestrunner ]; 14 + checkInputs = [ pytest pytest-runner ]; 15 15 16 16 propagatedBuildInputs = [ astroid six isort mccabe configparser backports_functools_lru_cache singledispatch setuptools ]; 17 17
+2 -2
pkgs/development/python-modules/pyls-mypy/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, isPy27 2 2 , future, python-language-server, mypy, configparser 3 - , pytestCheckHook, mock, pytestcov, coverage 3 + , pytestCheckHook, mock, pytest-cov, coverage 4 4 , fetchpatch 5 5 }: 6 6 ··· 34 34 }) 35 35 ]; 36 36 37 - checkInputs = [ mock pytestcov coverage pytestCheckHook ]; 37 + checkInputs = [ mock pytest-cov coverage pytestCheckHook ]; 38 38 39 39 propagatedBuildInputs = [ 40 40 mypy python-language-server configparser
+2 -2
pkgs/development/python-modules/pylti/default.nix
··· 11 11 , pyflakes 12 12 , pytest 13 13 , pytestcache 14 - , pytestcov 14 + , pytest-cov 15 15 , covCore 16 16 , pytest-flakes 17 17 , sphinx ··· 33 33 34 34 propagatedBuildInputs = [ httplib2 oauth oauth2 semantic-version ]; 35 35 checkInputs = [ 36 - flask httpretty oauthlib pyflakes pytest pytestcache pytestcov covCore 36 + flask httpretty oauthlib pyflakes pytest pytestcache pytest-cov covCore 37 37 pytest-flakes sphinx mock chalice 38 38 ]; 39 39
+2 -2
pkgs/development/python-modules/pymatgen-lammps/default.nix
··· 2 2 , fetchurl 3 3 , buildPythonPackage 4 4 , pymatgen 5 - , pytestrunner 5 + , pytest-runner 6 6 , pytestCheckHook 7 7 , isPy3k 8 8 }: ··· 17 17 sha256 = "0shldl8is3195jmji7dr3zsh1bzxlahaqrmpr28niks7nnfj80fx"; 18 18 }; 19 19 20 - buildInputs = [ pytestrunner ]; 20 + buildInputs = [ pytest-runner ]; 21 21 checkInputs = [ pytestCheckHook ]; 22 22 propagatedBuildInputs = [ pymatgen ]; 23 23
+2 -2
pkgs/development/python-modules/pynvim/default.nix
··· 6 6 , greenlet 7 7 , pythonOlder 8 8 , isPyPy 9 - , pytestrunner 9 + , pytest-runner 10 10 }: 11 11 12 12 buildPythonPackage rec { ··· 20 20 }; 21 21 22 22 nativeBuildInputs = [ 23 - pytestrunner 23 + pytest-runner 24 24 ]; 25 25 26 26 # Tests require pkgs.neovim,
+2 -2
pkgs/development/python-modules/pyosf/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , isPy27 5 - , pytestrunner 5 + , pytest-runner 6 6 , requests 7 7 }: 8 8 ··· 19 19 }; 20 20 21 21 preBuild = "export HOME=$TMP"; 22 - buildInputs = [ pytestrunner ]; # required via `setup_requires` 22 + buildInputs = [ pytest-runner ]; # required via `setup_requires` 23 23 propagatedBuildInputs = [ requests ]; 24 24 25 25 doCheck = false; # requires network access
+2 -2
pkgs/development/python-modules/pysrim/default.nix
··· 1 1 { lib 2 2 , fetchPypi 3 3 , buildPythonPackage 4 - , pytestrunner 4 + , pytest-runner 5 5 , numpy 6 6 , pyyaml 7 7 }: ··· 15 15 sha256 = "ada088f73f7e1a3bf085206e81e0f83ed89c1d0b23a789ecd0ba0a250724aee8"; 16 16 }; 17 17 18 - buildInputs = [ pytestrunner ]; 18 + buildInputs = [ pytest-runner ]; 19 19 propagatedBuildInputs = [ numpy pyyaml ]; 20 20 21 21 # Tests require git lfs download of repository
+2 -2
pkgs/development/python-modules/pytest-astropy-header/default.nix
··· 3 3 , fetchPypi 4 4 , fetchpatch 5 5 , pytest 6 - , pytestcov 6 + , pytest-cov 7 7 , pytestCheckHook 8 8 , numpy 9 9 , astropy ··· 37 37 38 38 checkInputs = [ 39 39 pytestCheckHook 40 - pytestcov 40 + pytest-cov 41 41 numpy 42 42 scipy 43 43 h5py
+2 -2
pkgs/development/python-modules/pytest-django/default.nix
··· 5 5 , django 6 6 , setuptools-scm 7 7 , django-configurations 8 - , pytest_xdist 8 + , pytest-xdist 9 9 , six 10 10 }: 11 11 buildPythonPackage rec { ··· 18 18 }; 19 19 20 20 nativeBuildInputs = [ pytest setuptools-scm ]; 21 - checkInputs = [ pytest django-configurations pytest_xdist six ]; 21 + checkInputs = [ pytest django-configurations pytest-xdist six ]; 22 22 propagatedBuildInputs = [ django ]; 23 23 24 24 # Complicated. Requires Django setup.
+2 -2
pkgs/development/python-modules/pytest-factoryboy/default.nix
··· 7 7 , pytest 8 8 , pytestcache 9 9 , pytestCheckHook 10 - , pytestcov 10 + , pytest-cov 11 11 }: 12 12 13 13 buildPythonPackage rec { ··· 32 32 mock 33 33 pytestCheckHook 34 34 pytestcache 35 - pytestcov 35 + pytest-cov 36 36 ]; 37 37 38 38 pytestFlagsArray = [ "--ignore=docs" ];
+2 -2
pkgs/development/python-modules/pytest-filter-subpackage/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytest 5 - , pytestcov 5 + , pytest-cov 6 6 , pytest-doctestplus 7 7 , pytestCheckHook 8 8 , setuptools-scm ··· 25 25 26 26 propagatedBuildInputs = [ 27 27 pytest-doctestplus 28 - pytestcov 28 + pytest-cov 29 29 pytestCheckHook 30 30 ]; 31 31
+2 -2
pkgs/development/python-modules/pytest-pylint/default.nix
··· 5 5 , pytest 6 6 , pylint 7 7 , six 8 - , pytestrunner 8 + , pytest-runner 9 9 , toml 10 10 }: 11 11 ··· 19 19 sha256 = "790c7a8019fab08e59bd3812db1657a01995a975af8b1c6ce95b9aa39d61da27"; 20 20 }; 21 21 22 - nativeBuildInputs = [ pytestrunner ]; 22 + nativeBuildInputs = [ pytest-runner ]; 23 23 24 24 buildInputs = [ pytest ]; 25 25
+2 -2
pkgs/development/python-modules/pytest-randomly/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder 2 2 , factory_boy, faker, numpy, backports-entry-points-selectable 3 - , pytestCheckHook, pytest_xdist 3 + , pytestCheckHook, pytest-xdist 4 4 }: 5 5 6 6 buildPythonPackage rec { ··· 23 23 24 24 checkInputs = [ 25 25 pytestCheckHook 26 - pytest_xdist 26 + pytest-xdist 27 27 numpy 28 28 factory_boy 29 29 faker
+2 -2
pkgs/development/python-modules/pytest-shutil/default.nix
··· 1 1 { lib, isPyPy, buildPythonPackage, fetchPypi 2 - , pytest, cmdline, pytestcov, coverage, setuptools-git, mock, pathpy, execnet 2 + , pytest, cmdline, pytest-cov, coverage, setuptools-git, mock, pathpy, execnet 3 3 , contextlib2, termcolor }: 4 4 5 5 buildPythonPackage rec { ··· 13 13 14 14 buildInputs = [ pytest ]; 15 15 checkInputs = [ cmdline pytest ]; 16 - propagatedBuildInputs = [ pytestcov coverage setuptools-git mock pathpy execnet contextlib2 termcolor ]; 16 + propagatedBuildInputs = [ pytest-cov coverage setuptools-git mock pathpy execnet contextlib2 termcolor ]; 17 17 18 18 checkPhase = '' 19 19 py.test ${lib.optionalString isPyPy "-k'not (test_run or test_run_integration)'"}
+2 -2
pkgs/development/python-modules/pytest-timeout/default.nix
··· 4 4 , pytest 5 5 , pytestCheckHook 6 6 , pexpect 7 - , pytestcov 7 + , pytest-cov 8 8 }: 9 9 10 10 buildPythonPackage rec { ··· 18 18 19 19 buildInputs = [ pytest ]; 20 20 21 - checkInputs = [ pytestCheckHook pexpect pytestcov ]; 21 + checkInputs = [ pytestCheckHook pexpect pytest-cov ]; 22 22 23 23 disabledTests = [ 24 24 "test_suppresses_timeout_when_pdb_is_entered"
+2 -2
pkgs/development/python-modules/pytest-virtualenv/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 - , pytest, pytestcov, mock, cmdline, pytest-fixture-config, pytest-shutil, virtualenv }: 2 + , pytest, pytest-cov, mock, cmdline, pytest-fixture-config, pytest-shutil, virtualenv }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "pytest-virtualenv"; ··· 10 10 sha256 = "03w2zz3crblj1p6i8nq17946hbn3zqp9z7cfnifw47hi4a4fww12"; 11 11 }; 12 12 13 - checkInputs = [ pytest pytestcov mock cmdline ]; 13 + checkInputs = [ pytest pytest-cov mock cmdline ]; 14 14 propagatedBuildInputs = [ pytest-fixture-config pytest-shutil virtualenv ]; 15 15 checkPhase = "py.test tests/unit "; 16 16
pkgs/development/python-modules/pytestrunner/2.nix pkgs/development/python-modules/pytest-runner/2.nix
pkgs/development/python-modules/pytestrunner/default.nix pkgs/development/python-modules/pytest-runner/default.nix
+2 -2
pkgs/development/python-modules/python-hosts/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pyyaml, pytest, pytestcov }: 1 + { lib, buildPythonPackage, fetchPypi, pyyaml, pytest, pytest-cov }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "python-hosts"; ··· 15 15 substituteInPlace python_hosts/utils.py --replace "import win_inet_pton" "" 16 16 ''; 17 17 18 - checkInputs = [ pyyaml pytest pytestcov ]; 18 + checkInputs = [ pyyaml pytest pytest-cov ]; 19 19 20 20 # Removing 1 test file (it requires internet connection) and keeping the other two 21 21 checkPhase = ''
+2 -2
pkgs/development/python-modules/python-jsonrpc-server/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder 2 - , pytestCheckHook, mock, pytestcov, coverage 2 + , pytestCheckHook, mock, pytest-cov, coverage 3 3 , future, futures ? null, ujson, isPy38 4 4 }: 5 5 ··· 19 19 ''; 20 20 21 21 checkInputs = [ 22 - pytestCheckHook mock pytestcov coverage 22 + pytestCheckHook mock pytest-cov coverage 23 23 ]; 24 24 25 25 propagatedBuildInputs = [ future ujson ]
+2 -2
pkgs/development/python-modules/python-language-server/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, pythonAtLeast, pythonOlder, isPy27 2 2 , backports_functools_lru_cache ? null, configparser ? null, futures ? null, future, jedi, pluggy, python-jsonrpc-server, flake8 3 - , pytestCheckHook, mock, pytestcov, coverage, setuptools, ujson, flaky 3 + , pytestCheckHook, mock, pytest-cov, coverage, setuptools, ujson, flaky 4 4 , # Allow building a limited set of providers, e.g. ["pycodestyle"]. 5 5 providers ? ["*"] 6 6 # The following packages are optional and ··· 55 55 doCheck = providers == ["*"]; 56 56 57 57 checkInputs = [ 58 - pytestCheckHook mock pytestcov coverage flaky 58 + pytestCheckHook mock pytest-cov coverage flaky 59 59 # Do not propagate flake8 or it will enable pyflakes implicitly 60 60 flake8 61 61 # rope is technically a dependency, but we don't add it by default since we
+4 -4
pkgs/development/python-modules/python-lz4/default.nix
··· 6 6 , pkgconfig 7 7 , psutil 8 8 , pytest 9 - , pytestcov 10 - , pytestrunner 9 + , pytest-cov 10 + , pytest-runner 11 11 , setuptools-scm 12 12 }: 13 13 ··· 23 23 sha256 = "009c4rbyj4cjb8fznccfpr5wrzdmi56wq990yjh22n0z2qqylmkf"; 24 24 }; 25 25 26 - nativeBuildInputs = [ setuptools-scm pkgconfig pytestrunner ]; 27 - checkInputs = [ pytest pytestcov psutil ]; 26 + nativeBuildInputs = [ setuptools-scm pkgconfig pytest-runner ]; 27 + checkInputs = [ pytest pytest-cov psutil ]; 28 28 propagatedBuildInputs = lib.optionals (!isPy3k) [ future ]; 29 29 30 30 # give a hint to setuptools-scm on package version
+2 -2
pkgs/development/python-modules/python-multipart/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytest 5 - , pytestcov 5 + , pytest-cov 6 6 , mock 7 7 , pyyaml 8 8 , six ··· 19 19 20 20 checkInputs = [ 21 21 pytest 22 - pytestcov 22 + pytest-cov 23 23 mock 24 24 pyyaml 25 25 ];
+2 -2
pkgs/development/python-modules/python-twitter/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , fetchpatch 5 - , pytestrunner 5 + , pytest-runner 6 6 , future 7 7 , requests 8 8 , responses ··· 31 31 }) 32 32 ]; 33 33 34 - nativeBuildInputs = [ pytestrunner ]; 34 + nativeBuildInputs = [ pytest-runner ]; 35 35 propagatedBuildInputs = [ future requests requests_oauthlib ]; 36 36 checkInputs = [ pytest responses hypothesis ]; 37 37
+2 -2
pkgs/development/python-modules/pythran/default.nix
··· 2 2 , python 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 - , pytestrunner 5 + , pytest-runner 6 6 , ply 7 7 , networkx 8 8 , decorator ··· 39 39 ]; 40 40 41 41 nativeBuildInputs = [ 42 - pytestrunner 42 + pytest-runner 43 43 ]; 44 44 45 45 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyvips/default.nix
··· 1 - { buildPythonPackage, fetchPypi, pytestrunner, pytestCheckHook, glib, vips, cffi 1 + { buildPythonPackage, fetchPypi, pytest-runner, pytestCheckHook, glib, vips, cffi 2 2 , pkg-config, pkgconfig, lib }: 3 3 4 4 buildPythonPackage rec { ··· 10 10 sha256 = "244e79c625be65237677c79424d4476de6c406805910015d4adbd0186c64a6a2"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pytestrunner pkgconfig pkg-config ]; 13 + nativeBuildInputs = [ pytest-runner pkgconfig pkg-config ]; 14 14 15 15 buildInputs = [ glib vips ]; 16 16
+2 -2
pkgs/development/python-modules/qcelemental/default.nix
··· 1 1 { buildPythonPackage, lib, fetchPypi, numpy 2 - , pydantic, pint, networkx, pytestrunner, pytestcov, pytest 2 + , pydantic, pint, networkx, pytest-runner, pytest-cov, pytest 3 3 } : 4 4 5 5 buildPythonPackage rec { 6 6 pname = "qcelemental"; 7 7 version = "0.21.0"; 8 8 9 - checkInputs = [ pytestrunner pytestcov pytest ]; 9 + checkInputs = [ pytest-runner pytest-cov pytest ]; 10 10 propagatedBuildInputs = [ numpy pydantic pint networkx ]; 11 11 12 12 src = fetchPypi {
+3 -3
pkgs/development/python-modules/qcengine/default.nix
··· 1 1 { buildPythonPackage, lib, fetchPypi, pyyaml, qcelemental, pydantic 2 - , py-cpuinfo, psutil, pytestrunner, pytest, pytestcov 2 + , py-cpuinfo, psutil, pytest-runner, pytest, pytest-cov 3 3 } : 4 4 5 5 buildPythonPackage rec { ··· 7 7 version = "0.19.0"; 8 8 9 9 checkInputs = [ 10 - pytestrunner 11 - pytestcov 10 + pytest-runner 11 + pytest-cov 12 12 pytest 13 13 ]; 14 14
+2 -2
pkgs/development/python-modules/rasterio/default.nix
··· 1 1 { buildPythonPackage, lib, fetchFromGitHub, isPy3k 2 2 , cython, setuptools 3 3 , numpy, affine, attrs, cligj, click-plugins, snuggs, gdal 4 - , pytest, pytestcov, packaging, hypothesis, boto3, mock 4 + , pytest, pytest-cov, packaging, hypothesis, boto3, mock 5 5 , certifi, shapely 6 6 }: 7 7 ··· 17 17 sha256 = "sha256-rf2qdUhbS4Z2+mvlN1RzZvlgTgjqiBoQzry4z5QLSUc="; 18 18 }; 19 19 20 - checkInputs = [ boto3 pytest pytestcov packaging hypothesis shapely ] ++ lib.optional (!isPy3k) mock; 20 + checkInputs = [ boto3 pytest pytest-cov packaging hypothesis shapely ] ++ lib.optional (!isPy3k) mock; 21 21 nativeBuildInputs = [ cython gdal ]; 22 22 propagatedBuildInputs = [ certifi gdal numpy attrs affine cligj click-plugins snuggs setuptools ]; 23 23
+2 -2
pkgs/development/python-modules/readchar/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, flake8, pytest, pytestcov, pexpect }: 1 + { lib, buildPythonPackage, fetchFromGitHub, flake8, pytest, pytest-cov, pexpect }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "readchar"; ··· 13 13 }; 14 14 15 15 nativeBuildInputs = [ flake8 ]; 16 - checkInputs = [ pytest pytestcov pexpect ]; 16 + checkInputs = [ pytest pytest-cov pexpect ]; 17 17 18 18 meta = with lib; { 19 19 homepage = "https://github.com/magmax/python-readchar";
+2 -2
pkgs/development/python-modules/rebulk/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pytest, pytestrunner, six, regex}: 1 + { lib, buildPythonPackage, fetchPypi, pytest, pytest-runner, six, regex}: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "rebulk"; ··· 11 11 12 12 # Some kind of trickery with imports that doesn't work. 13 13 doCheck = false; 14 - buildInputs = [ pytest pytestrunner ]; 14 + buildInputs = [ pytest pytest-runner ]; 15 15 propagatedBuildInputs = [ six regex ]; 16 16 17 17 meta = with lib; {
+2 -2
pkgs/development/python-modules/reflink/default.nix
··· 3 3 , fetchPypi 4 4 , lib 5 5 , pytestCheckHook 6 - , pytestrunner 6 + , pytest-runner 7 7 }: 8 8 9 9 buildPythonPackage rec { ··· 15 15 sha256 = "sha256-ySU1gtskQTv9cDq/wbKkneePMbSQcjnyhumhkpoebjo="; 16 16 }; 17 17 18 - propagatedBuildInputs = [ cffi pytestrunner ]; 18 + propagatedBuildInputs = [ cffi pytest-runner ]; 19 19 20 20 checkInputs = [ pytestCheckHook ]; 21 21
+2 -2
pkgs/development/python-modules/reikna/default.nix
··· 2 2 , fetchPypi 3 3 , buildPythonPackage 4 4 , sphinx 5 - , pytestcov 5 + , pytest-cov 6 6 , pytest 7 7 , Mako 8 8 , numpy ··· 20 20 sha256 = "d01f4264c8379ef2962a93aacb002d491b92ef9b5b22b45f77e7821dfa87bef7"; 21 21 }; 22 22 23 - checkInputs = [ sphinx pytestcov pytest ]; 23 + checkInputs = [ sphinx pytest-cov pytest ]; 24 24 25 25 propagatedBuildInputs = [ Mako numpy funcsigs ] 26 26 ++ lib.optional withCuda pycuda
+2 -2
pkgs/development/python-modules/resampy/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , pytest 5 - , pytestcov 5 + , pytest-cov 6 6 , numpy 7 7 , scipy 8 8 , cython ··· 22 22 sha256 = "0qmkxl5sbgh0j73n667vyi7ywzh09iaync91yp1j5rrcmwsn0qfs"; 23 23 }; 24 24 25 - checkInputs = [ pytest pytestcov ]; 25 + checkInputs = [ pytest pytest-cov ]; 26 26 propagatedBuildInputs = [ numpy scipy cython numba six ]; 27 27 28 28 checkPhase = ''
+2 -2
pkgs/development/python-modules/rising/default.nix
··· 3 3 , isPy27 4 4 , fetchFromGitHub 5 5 , pytestCheckHook 6 - , pytestcov 6 + , pytest-cov 7 7 , dill 8 8 , numpy 9 9 , pytorch ··· 25 25 }; 26 26 27 27 propagatedBuildInputs = [ numpy pytorch threadpoolctl tqdm ]; 28 - checkInputs = [ dill pytestcov pytestCheckHook ]; 28 + checkInputs = [ dill pytest-cov pytestCheckHook ]; 29 29 30 30 disabledTests = [ "test_affine" ]; # deprecated division operator '/' 31 31
+2 -2
pkgs/development/python-modules/runway-python/default.nix
··· 20 20 , wget 21 21 , deepdiff 22 22 , pytestCheckHook 23 - , pytestcov 23 + , pytest-cov 24 24 , websocket-client 25 25 }: 26 26 ··· 61 61 checkInputs = [ 62 62 deepdiff 63 63 pytestCheckHook 64 - pytestcov 64 + pytest-cov 65 65 websocket-client 66 66 ]; 67 67
+2 -2
pkgs/development/python-modules/rxv/default.nix
··· 6 6 , pytest 7 7 , requests-mock 8 8 , mock 9 - , pytestcov 9 + , pytest-cov 10 10 , pytest-timeout 11 11 , testtools 12 12 }: ··· 25 25 26 26 propagatedBuildInputs = [ defusedxml requests ]; 27 27 28 - checkInputs = [ pytest requests-mock mock pytestcov pytest-timeout testtools ]; 28 + checkInputs = [ pytest requests-mock mock pytest-cov pytest-timeout testtools ]; 29 29 checkPhase = '' 30 30 pytest 31 31 '';
+4 -4
pkgs/development/python-modules/scikit-build/default.nix
··· 15 15 , ninja 16 16 , pathpy 17 17 , pytest 18 - , pytestcov 18 + , pytest-cov 19 19 , pytest-mock 20 - , pytestrunner 20 + , pytest-runner 21 21 , pytest-virtualenv 22 22 , requests 23 23 , six ··· 48 48 ninja 49 49 pathpy 50 50 pytest 51 - pytestcov 51 + pytest-cov 52 52 pytest-mock 53 - pytestrunner 53 + pytest-runner 54 54 pytest-virtualenv 55 55 requests 56 56 six
+2 -2
pkgs/development/python-modules/scrapy-fake-useragent/default.nix
··· 1 - { lib, fetchFromGitHub, buildPythonPackage, pytestCheckHook, pytestcov, pytest-mock, fake-useragent, faker, scrapy }: 1 + { lib, fetchFromGitHub, buildPythonPackage, pytestCheckHook, pytest-cov, pytest-mock, fake-useragent, faker, scrapy }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "scrapy-fake-useragent"; ··· 14 14 15 15 propagatedBuildInputs = [ fake-useragent faker ]; 16 16 17 - checkInputs = [ pytestCheckHook scrapy pytestcov pytest-mock ]; 17 + checkInputs = [ pytestCheckHook scrapy pytest-cov pytest-mock ]; 18 18 19 19 meta = with lib; { 20 20 description = "Random User-Agent middleware based on fake-useragent";
+2 -2
pkgs/development/python-modules/secp256k1/default.nix
··· 3 3 , fetchPypi 4 4 , pkg-config 5 5 , pytest 6 - , pytestrunner 6 + , pytest-runner 7 7 , cffi 8 8 , secp256k1 9 9 }: ··· 18 18 }; 19 19 20 20 nativeBuildInputs = [ pkg-config ]; 21 - checkInputs = [ pytest pytestrunner ]; 21 + checkInputs = [ pytest pytest-runner ]; 22 22 propagatedBuildInputs = [ cffi secp256k1 ]; 23 23 24 24 # Tests are not included in archive
+2 -2
pkgs/development/python-modules/setuptoolstrial/default.nix
··· 3 3 , fetchPypi 4 4 , pytest 5 5 , virtualenv 6 - , pytestrunner 6 + , pytest-runner 7 7 , pytest-virtualenv 8 8 , twisted 9 9 , pathlib2 ··· 18 18 sha256 = "14220f8f761c48ba1e2526f087195077cf54fad7098b382ce220422f0ff59b12"; 19 19 }; 20 20 21 - buildInputs = [ pytest virtualenv pytestrunner pytest-virtualenv ]; 21 + buildInputs = [ pytest virtualenv pytest-runner pytest-virtualenv ]; 22 22 propagatedBuildInputs = [ twisted pathlib2 ]; 23 23 24 24 postPatch = ''
+2 -2
pkgs/development/python-modules/skorch/default.nix
··· 3 3 , fetchPypi 4 4 , pytestCheckHook 5 5 , pytest 6 - , pytestcov 6 + , pytest-cov 7 7 , flaky 8 8 , numpy 9 9 , pandas ··· 24 24 }; 25 25 26 26 propagatedBuildInputs = [ numpy pytorch scikit-learn scipy tabulate tqdm ]; 27 - checkInputs = [ pytest pytestcov flaky pandas pytestCheckHook ]; 27 + checkInputs = [ pytest pytest-cov flaky pandas pytestCheckHook ]; 28 28 29 29 disabledTests = [ 30 30 # on CPU, these expect artifacts from previous GPU run
+2 -2
pkgs/development/python-modules/slackclient/default.nix
··· 10 10 , pytest-cov 11 11 , pytest-mock 12 12 , pytestCheckHook 13 - , pytestrunner 13 + , pytest-runner 14 14 , requests 15 15 , responses 16 16 , six ··· 45 45 pytest-cov 46 46 pytest-mock 47 47 pytestCheckHook 48 - pytestrunner 48 + pytest-runner 49 49 responses 50 50 ]; 51 51
+2 -2
pkgs/development/python-modules/soco/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "soco"; 17 - version = "0.22.6"; 17 + version = "0.23.1"; 18 18 disabled = pythonOlder "3.6"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "SoCo"; 22 22 repo = "SoCo"; 23 23 rev = "v${version}"; 24 - sha256 = "06qar4syi6g3x84klnk0mg6w5ryl50c5k3s1hag4rimbkap3x6ks"; 24 + sha256 = "15q82fq10d162xanypn1k51y15r38l7sj0417jzbjx40zz6c93f7"; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/softlayer/default.nix
··· 9 9 , pygments 10 10 , urllib3 11 11 , pytest 12 - , pytestcov 12 + , pytest-cov 13 13 , mock 14 14 , sphinx 15 15 , testtools ··· 22 22 23 23 propagatedBuildInputs = [ ptable click requests prompt_toolkit pygments urllib3 ]; 24 24 25 - checkInputs = [ pytest pytestcov mock sphinx testtools ptable click requests prompt_toolkit pygments urllib3 ]; 25 + checkInputs = [ pytest pytest-cov mock sphinx testtools ptable click requests prompt_toolkit pygments urllib3 ]; 26 26 27 27 checkPhase = '' 28 28 pytest
+1 -1
pkgs/development/python-modules/sqlalchemy/default.nix
··· 9 9 , mock 10 10 , pysqlite ? null 11 11 , pytestCheckHook 12 - , pytest_xdist 12 + , pytest-xdist 13 13 }: 14 14 15 15 buildPythonPackage rec {
+2 -2
pkgs/development/python-modules/sqlite-utils/default.nix
··· 7 7 , sqlite-fts4 8 8 , tabulate 9 9 , pytestCheckHook 10 - , pytestrunner 10 + , pytest-runner 11 11 , black 12 12 , hypothesis 13 13 , sqlite ··· 32 32 33 33 checkInputs = [ 34 34 pytestCheckHook 35 - pytestrunner 35 + pytest-runner 36 36 black 37 37 hypothesis 38 38 ];
+2 -2
pkgs/development/python-modules/srptools/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, six, pytest, pytestrunner }: 1 + { lib, buildPythonPackage, fetchPypi, six, pytest, pytest-runner }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "srptools"; ··· 11 11 12 12 propagatedBuildInputs = [ six ]; 13 13 14 - checkInputs = [ pytest pytestrunner ]; 14 + checkInputs = [ pytest pytest-runner ]; 15 15 16 16 meta = with lib; { 17 17 description = "Python-Tools to implement Secure Remote Password (SRP) authentication";
+2 -2
pkgs/development/python-modules/ssdeep/default.nix
··· 5 5 , cffi 6 6 , six 7 7 , pytest 8 - , pytestrunner 8 + , pytest-runner 9 9 }: 10 10 11 11 buildPythonPackage rec { ··· 17 17 sha256 = "0px8k4fjbkjb717bg2v7rjhm4iclrxzq7sh0hfqs55f4ddqi0m8v"; 18 18 }; 19 19 20 - buildInputs = [ pkgs.ssdeep pytestrunner ]; 20 + buildInputs = [ pkgs.ssdeep pytest-runner ]; 21 21 checkInputs = [ pytest ]; 22 22 propagatedBuildInputs = [ cffi six ]; 23 23
+2 -2
pkgs/development/python-modules/sseclient/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPy27 2 2 , requests, six 3 - , backports_unittest-mock, pytestCheckHook, pytestrunner }: 3 + , backports_unittest-mock, pytestCheckHook, pytest-runner }: 4 4 5 5 buildPythonPackage rec { 6 6 pname = "sseclient"; ··· 15 15 16 16 # some tests use python3 strings 17 17 doCheck = !isPy27; 18 - checkInputs = [ backports_unittest-mock pytestCheckHook pytestrunner ]; 18 + checkInputs = [ backports_unittest-mock pytestCheckHook pytest-runner ]; 19 19 20 20 # tries to open connection to wikipedia 21 21 disabledTests = [ "event_stream" ];
+2 -2
pkgs/development/python-modules/stone/default.nix
··· 2 2 , coverage 3 3 , mock 4 4 , ply 5 - , pytestrunner 5 + , pytest-runner 6 6 , pytestCheckHook 7 7 , six 8 8 }: ··· 24 24 --replace "coverage==5.3" "coverage" 25 25 ''; 26 26 27 - nativeBuildInputs = [ pytestrunner ]; 27 + nativeBuildInputs = [ pytest-runner ]; 28 28 29 29 propagatedBuildInputs = [ ply six ]; 30 30
+2 -2
pkgs/development/python-modules/stripe/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, requests, pytest, pytestcov, pytest-mock, pytest_xdist }: 1 + { lib, buildPythonPackage, fetchPypi, requests, pytest, pytest-cov, pytest-mock, pytest-xdist }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "stripe"; ··· 15 15 16 16 propagatedBuildInputs = [ requests ]; 17 17 18 - checkInputs = [ pytest pytestcov pytest-mock pytest_xdist ]; 18 + checkInputs = [ pytest pytest-cov pytest-mock pytest-xdist ]; 19 19 20 20 meta = with lib; { 21 21 description = "Stripe Python bindings";
+2 -2
pkgs/development/python-modules/stups-cli-support/default.nix
··· 5 5 , dnspython 6 6 , requests 7 7 , pytest 8 - , pytestcov 8 + , pytest-cov 9 9 , isPy3k 10 10 }: 11 11 ··· 31 31 32 32 checkInputs = [ 33 33 pytest 34 - pytestcov 34 + pytest-cov 35 35 ]; 36 36 37 37 meta = with lib; {
+2 -2
pkgs/development/python-modules/stups-fullstop/default.nix
··· 5 5 , stups-cli-support 6 6 , stups-zign 7 7 , pytest 8 - , pytestcov 8 + , pytest-cov 9 9 , isPy3k 10 10 }: 11 11 ··· 33 33 34 34 checkInputs = [ 35 35 pytest 36 - pytestcov 36 + pytest-cov 37 37 ]; 38 38 39 39 meta = with lib; {
+2 -2
pkgs/development/python-modules/stups-pierone/default.nix
··· 5 5 , stups-cli-support 6 6 , stups-zign 7 7 , pytest 8 - , pytestcov 8 + , pytest-cov 9 9 , hypothesis 10 10 , isPy3k 11 11 }: ··· 34 34 35 35 checkInputs = [ 36 36 pytest 37 - pytestcov 37 + pytest-cov 38 38 hypothesis 39 39 ]; 40 40
+2 -2
pkgs/development/python-modules/stups-tokens/default.nix
··· 4 4 , requests 5 5 , mock 6 6 , pytest 7 - , pytestcov 7 + , pytest-cov 8 8 , isPy3k 9 9 }: 10 10 ··· 27 27 checkInputs = [ 28 28 mock 29 29 pytest 30 - pytestcov 30 + pytest-cov 31 31 ]; 32 32 33 33 meta = with lib; {
+2 -2
pkgs/development/python-modules/stups-zign/default.nix
··· 5 5 , stups-tokens 6 6 , stups-cli-support 7 7 , pytest 8 - , pytestcov 8 + , pytest-cov 9 9 , isPy3k 10 10 }: 11 11 ··· 40 40 41 41 checkInputs = [ 42 42 pytest 43 - pytestcov 43 + pytest-cov 44 44 ]; 45 45 46 46 meta = with lib; {
+3 -3
pkgs/development/python-modules/subliminal/default.nix
··· 19 19 , vcrpy 20 20 , pytest 21 21 , pytest-flakes 22 - , pytestcov 23 - , pytestrunner 22 + , pytest-cov 23 + , pytest-runner 24 24 }: 25 25 26 26 buildPythonPackage rec { ··· 40 40 41 41 checkInputs = [ 42 42 sympy vcrpy pytest pytest-flakes 43 - pytestcov pytestrunner 43 + pytest-cov pytest-runner 44 44 ]; 45 45 46 46 # https://github.com/Diaoul/subliminal/pull/963
+2 -2
pkgs/development/python-modules/sunpy/default.nix
··· 19 19 , parfive 20 20 , pytest-astropy 21 21 , pytest-mock 22 - , pytestcov 22 + , pytest-cov 23 23 , python-dateutil 24 24 , scikitimage 25 25 , scipy ··· 68 68 checkInputs = [ 69 69 hypothesis 70 70 pytest-astropy 71 - pytestcov 71 + pytest-cov 72 72 pytest-mock 73 73 ]; 74 74
+6 -3
pkgs/development/python-modules/surepy/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "surepy"; 21 - version = "0.6.0"; 21 + version = "0.7.0"; 22 22 format = "pyproject"; 23 23 disabled = pythonOlder "3.8"; 24 24 ··· 26 26 owner = "benleb"; 27 27 repo = pname; 28 28 rev = "v${version}"; 29 - sha256 = "sha256-XoYiZPBc9SybyKocui1HqSA+YPiPpbupJWMCfmQT5RU="; 29 + sha256 = "04ywkbgs1lnnlhxakbr96crwc8hl97px8w7yigps2ki69md0xf60"; 30 30 }; 31 31 32 32 postPatch = '' ··· 35 35 --replace 'attrs = "^20.3.0"' 'attrs = "*"' 36 36 ''; 37 37 38 - nativeBuildInputs = [ poetry-core ]; 38 + nativeBuildInputs = [ 39 + poetry-core 40 + ]; 39 41 40 42 propagatedBuildInputs = [ 41 43 aiodns ··· 53 55 54 56 # Project has no tests 55 57 doCheck = false; 58 + 56 59 pythonImportsCheck = [ "surepy" ]; 57 60 58 61 meta = with lib; {
+2 -2
pkgs/development/python-modules/tablib/default.nix
··· 4 4 , pandas 5 5 , setuptools-scm 6 6 , pytest 7 - , pytestcov 7 + , pytest-cov 8 8 , pyyaml 9 9 , unicodecsv 10 10 , xlrd ··· 23 23 24 24 nativeBuildInputs = [ setuptools-scm ]; 25 25 propagatedBuildInputs = [ xlwt openpyxl pyyaml xlrd odfpy ]; 26 - checkInputs = [ pytest pytestcov unicodecsv pandas ]; 26 + checkInputs = [ pytest pytest-cov unicodecsv pandas ]; 27 27 28 28 # test_tablib needs MarkupPy, which isn't packaged yet 29 29 checkPhase = ''
+2 -2
pkgs/development/python-modules/tatsu/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder 2 2 , colorama, regex 3 - , pytestrunner, pytestCheckHook, pytest-mypy 3 + , pytest-runner, pytestCheckHook, pytest-mypy 4 4 }: 5 5 6 6 buildPythonPackage rec { ··· 16 16 17 17 disabled = pythonOlder "3.8"; 18 18 19 - nativeBuildInputs = [ pytestrunner ]; 19 + nativeBuildInputs = [ pytest-runner ]; 20 20 propagatedBuildInputs = [ colorama regex ]; 21 21 checkInputs = [ pytestCheckHook pytest-mypy ]; 22 22
+2 -2
pkgs/development/python-modules/tempora/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 2 , setuptools-scm, pytest, pytest-freezegun, freezegun, backports_unittest-mock 3 3 , six, pytz, jaraco_functools, pythonOlder 4 - , pytest-flake8, pytestcov, pytest-black, pytest-mypy 4 + , pytest-flake8, pytest-cov, pytest-black, pytest-mypy 5 5 }: 6 6 7 7 buildPythonPackage rec { ··· 21 21 22 22 checkInputs = [ 23 23 pytest-freezegun pytest freezegun backports_unittest-mock 24 - pytest-flake8 pytestcov pytest-black pytest-mypy 24 + pytest-flake8 pytest-cov pytest-black pytest-mypy 25 25 ]; 26 26 27 27 checkPhase = ''
+2 -2
pkgs/development/python-modules/textwrap3/default.nix
··· 4 4 , tox 5 5 , pytest 6 6 , coverage 7 - , pytestcov 7 + , pytest-cov 8 8 }: 9 9 10 10 buildPythonPackage rec { ··· 21 21 tox 22 22 pytest 23 23 coverage 24 - pytestcov 24 + pytest-cov 25 25 ]; 26 26 27 27 checkPhase = ''
+2 -2
pkgs/development/python-modules/threadpoolctl/default.nix
··· 4 4 , fetchFromGitHub 5 5 , flit 6 6 , pytestCheckHook 7 - , pytestcov 7 + , pytest-cov 8 8 , numpy 9 9 , scipy 10 10 }: ··· 23 23 sha256 = "0sl6mp3b2gb0dvqkhnkmrp2g3r5c7clyyyxzq44xih6sw1pgx9df"; 24 24 }; 25 25 26 - checkInputs = [ pytestCheckHook pytestcov numpy scipy ]; 26 + checkInputs = [ pytestCheckHook pytest-cov numpy scipy ]; 27 27 28 28 meta = with lib; { 29 29 homepage = "https://github.com/joblib/threadpoolctl";
+2 -2
pkgs/development/python-modules/timezonefinder/default.nix
··· 5 5 , numba 6 6 , numpy 7 7 , pytestCheckHook 8 - , pytestcov 8 + , pytest-cov 9 9 }: 10 10 11 11 buildPythonPackage rec { ··· 23 23 numpy 24 24 ]; 25 25 26 - checkInputs = [ numba pytestCheckHook pytestcov ]; 26 + checkInputs = [ numba pytestCheckHook pytest-cov ]; 27 27 28 28 meta = with lib; { 29 29 description = "fast python package for finding the timezone of any point on earth (coordinates) offline";
+3 -3
pkgs/development/python-modules/tinycss2/default.nix
··· 6 6 , webencodings 7 7 # Check inputs 8 8 , pytest 9 - , pytestrunner 10 - , pytestcov 9 + , pytest-runner 10 + , pytest-cov 11 11 , pytest-flake8 12 12 , pytest-isort 13 13 }: ··· 34 34 35 35 propagatedBuildInputs = [ webencodings ]; 36 36 37 - checkInputs = [ pytest pytestrunner pytestcov pytest-flake8 pytest-isort ]; 37 + checkInputs = [ pytest pytest-runner pytest-cov pytest-flake8 pytest-isort ]; 38 38 39 39 # https://github.com/PyCQA/pycodestyle/issues/598 40 40 preCheck = ''
+2 -2
pkgs/development/python-modules/toggl-cli/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, pythonAtLeast, pythonOlder, click 2 2 , click-completion, factory_boy, faker, inquirer, notify-py, pbr, pendulum 3 - , ptable, pytestCheckHook, pytestcov, pytest-mock, requests, twine 3 + , ptable, pytestCheckHook, pytest-cov, pytest-mock, requests, twine 4 4 , validate-email }: 5 5 6 6 buildPythonPackage rec { ··· 20 20 ''; 21 21 22 22 nativeBuildInputs = [ pbr twine ]; 23 - checkInputs = [ pbr pytestCheckHook pytestcov pytest-mock faker factory_boy ]; 23 + checkInputs = [ pbr pytestCheckHook pytest-cov pytest-mock faker factory_boy ]; 24 24 25 25 preCheck = '' 26 26 export TOGGL_API_TOKEN=your_api_token
+2 -2
pkgs/development/python-modules/token-bucket/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , pytestrunner 4 + , pytest-runner 5 5 , pytestCheckHook 6 6 }: 7 7 ··· 18 18 }; 19 19 20 20 nativeBuildInputs = [ 21 - pytestrunner 21 + pytest-runner 22 22 ]; 23 23 24 24 checkInputs = [
+2 -2
pkgs/development/python-modules/torchgpipe/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , isPy27 5 - , pytestrunner 5 + , pytest-runner 6 6 , pytestCheckHook 7 7 , pytorch 8 8 }: ··· 22 22 23 23 propagatedBuildInputs = [ pytorch ]; 24 24 25 - checkInputs = [ pytestrunner pytestCheckHook ]; 25 + checkInputs = [ pytest-runner pytestCheckHook ]; 26 26 disabledTests = [ 27 27 "test_inplace_on_requires_grad" 28 28 "test_input_requiring_grad"
+2 -2
pkgs/development/python-modules/twine/default.nix
··· 5 5 , pyblake2 6 6 , readme_renderer 7 7 , requests 8 - , requests_toolbelt 8 + , requests-toolbelt 9 9 , setuptools-scm 10 10 , tqdm 11 11 , colorama ··· 30 30 pyblake2 31 31 readme_renderer 32 32 requests 33 - requests_toolbelt 33 + requests-toolbelt 34 34 tqdm 35 35 colorama 36 36 rfc3986
+4 -4
pkgs/development/python-modules/typer/default.nix
··· 4 4 , click 5 5 , pytestCheckHook 6 6 , shellingham 7 - , pytestcov 8 - , pytest_xdist 7 + , pytest-cov 8 + , pytest-xdist 9 9 , pytest-sugar 10 10 , coverage 11 11 , mypy ··· 26 26 27 27 checkInputs = [ 28 28 pytestCheckHook 29 - pytestcov 30 - pytest_xdist 29 + pytest-cov 30 + pytest-xdist 31 31 pytest-sugar 32 32 shellingham 33 33 coverage
+2 -2
pkgs/development/python-modules/typesentry/default.nix
··· 3 3 , fetchFromGitHub 4 4 , colorama 5 5 , pytest 6 - , pytestcov 6 + , pytest-cov 7 7 }: 8 8 9 9 buildPythonPackage { ··· 19 19 }; 20 20 21 21 propagatedBuildInputs = [ colorama ]; 22 - checkInputs = [ pytest pytestcov ]; 22 + checkInputs = [ pytest pytest-cov ]; 23 23 checkPhase = '' 24 24 pytest 25 25 '';
+2 -2
pkgs/development/python-modules/typesystem/default.nix
··· 3 3 , fetchFromGitHub 4 4 , isPy27 5 5 , pytestCheckHook 6 - , pytestcov 6 + , pytest-cov 7 7 , jinja2 8 8 , pyyaml 9 9 }: ··· 27 27 28 28 checkInputs = [ 29 29 pytestCheckHook 30 - pytestcov 30 + pytest-cov 31 31 ]; 32 32 33 33 disabledTests = [
+2 -2
pkgs/development/python-modules/uarray/default.nix
··· 7 7 , astunparse 8 8 , typing-extensions 9 9 , pytestCheckHook 10 - , pytestcov 10 + , pytest-cov 11 11 }: 12 12 13 13 buildPythonPackage rec { ··· 30 30 } 31 31 )]; 32 32 33 - checkInputs = [ pytestCheckHook pytestcov ]; 33 + checkInputs = [ pytestCheckHook pytest-cov ]; 34 34 propagatedBuildInputs = [ matchpy numpy astunparse typing-extensions ]; 35 35 36 36 # Tests must be run from outside the source directory
+2 -2
pkgs/development/python-modules/variants/default.nix
··· 1 1 { buildPythonPackage 2 2 , isPy27 3 3 , fetchPypi 4 - , pytestrunner 4 + , pytest-runner 5 5 , setuptools-scm 6 6 , singledispatch ? null 7 7 , pytest ··· 18 18 }; 19 19 20 20 nativeBuildInputs = [ 21 - pytestrunner 21 + pytest-runner 22 22 setuptools-scm 23 23 ]; 24 24
+2 -2
pkgs/development/python-modules/vdirsyncer/default.nix
··· 6 6 , click 7 7 , click-log 8 8 , click-threading 9 - , requests_toolbelt 9 + , requests-toolbelt 10 10 , requests 11 11 , requests_oauthlib # required for google oauth sync 12 12 , atomicwrites ··· 34 34 click-threading 35 35 requests 36 36 requests_oauthlib # required for google oauth sync 37 - requests_toolbelt 37 + requests-toolbelt 38 38 ]; 39 39 40 40 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/venusian/default.nix
··· 3 3 , fetchPypi 4 4 , isPy27 5 5 , pytest 6 - , pytestcov 6 + , pytest-cov 7 7 }: 8 8 9 9 buildPythonPackage rec { ··· 16 16 sha256 = "f6842b7242b1039c0c28f6feef29016e7e7dd3caaeb476a193acf737db31ee38"; 17 17 }; 18 18 19 - checkInputs = [ pytest pytestcov ]; 19 + checkInputs = [ pytest pytest-cov ]; 20 20 21 21 checkPhase = '' 22 22 pytest
+3 -3
pkgs/development/python-modules/weasyprint/default.nix
··· 13 13 fontconfig, 14 14 lib, stdenv, 15 15 pytest, 16 - pytestrunner, 16 + pytest-runner, 17 17 pytest-isort, 18 18 pytest-flake8, 19 - pytestcov, 19 + pytest-cov, 20 20 isPy3k, 21 21 substituteAll 22 22 }: ··· 39 39 --replace '[tool:pytest]' '[tool:pytest]\nflake8-ignore = E501' 40 40 ''; 41 41 42 - checkInputs = [ pytest pytestrunner pytest-isort pytest-flake8 pytestcov ]; 42 + checkInputs = [ pytest pytest-runner pytest-isort pytest-flake8 pytest-cov ]; 43 43 44 44 FONTCONFIG_FILE = "${fontconfig.out}/etc/fonts/fonts.conf"; 45 45
+2 -2
pkgs/development/python-modules/webexteamssdk/default.nix
··· 4 4 , future 5 5 , pyjwt 6 6 , requests 7 - , requests_toolbelt 7 + , requests-toolbelt 8 8 }: 9 9 10 10 buildPythonPackage rec { ··· 22 22 future 23 23 pyjwt 24 24 requests 25 - requests_toolbelt 25 + requests-toolbelt 26 26 ]; 27 27 28 28 # Tests require a Webex Teams test domain
+2 -2
pkgs/development/python-modules/word2vec/default.nix
··· 9 9 , setuptools-scm 10 10 , gcc 11 11 , pytest 12 - , pytestcov 12 + , pytest-cov 13 13 , isPy27 14 14 }: 15 15 let ··· 32 32 33 33 propagatedBuildInputs = [ cython numpy scikit-learn six ]; 34 34 35 - checkInputs = [ pytest pytestcov ]; 35 + checkInputs = [ pytest pytest-cov ]; 36 36 37 37 # Checks require test data downloaded separately 38 38 # See project source Makefile:test-data rule for reference
+2 -2
pkgs/development/python-modules/wordcloud/default.nix
··· 4 4 , numpy 5 5 , pillow 6 6 , cython 7 - , pytestcov 7 + , pytest-cov 8 8 , pytest 9 9 , fetchpatch 10 10 }: ··· 25 25 propagatedBuildInputs = [ matplotlib numpy pillow ]; 26 26 27 27 # Tests require extra dependencies 28 - checkInputs = [ mock pytest pytestcov ]; 28 + checkInputs = [ mock pytest pytest-cov ]; 29 29 30 30 checkPhase = '' 31 31 PATH=$out/bin:$PATH pytest test
+2 -2
pkgs/development/python-modules/xml2rfc/default.nix
··· 1 1 { lib, fetchPypi, buildPythonPackage, pythonAtLeast, intervaltree, pyflakes, requests, lxml, google-i18n-address 2 - , pycountry, html5lib, six, kitchen, pypdf2, dict2xml, weasyprint, pyyaml, jinja2, ConfigArgParse, appdirs 2 + , pycountry, html5lib, six, kitchen, pypdf2, dict2xml, weasyprint, pyyaml, jinja2, configargparse, appdirs 3 3 }: 4 4 5 5 buildPythonPackage rec { ··· 27 27 pypdf2 28 28 dict2xml 29 29 weasyprint 30 - ConfigArgParse 30 + configargparse 31 31 appdirs 32 32 ]; 33 33
+2 -2
pkgs/development/python-modules/yarl/default.nix
··· 3 3 , buildPythonPackage 4 4 , pythonOlder 5 5 , multidict 6 - , pytestrunner 6 + , pytest-runner 7 7 , pytest 8 8 , typing-extensions 9 9 , idna ··· 18 18 sha256 = "8a9066529240171b68893d60dca86a763eae2139dd42f42106b03cf4b426bf10"; 19 19 }; 20 20 21 - checkInputs = [ pytest pytestrunner ]; 21 + checkInputs = [ pytest pytest-runner ]; 22 22 propagatedBuildInputs = [ multidict idna ] 23 23 ++ lib.optionals (pythonOlder "3.8") [ 24 24 typing-extensions
+2 -2
pkgs/development/python-modules/zeep/default.nix
··· 19 19 , pythonOlder 20 20 , pytz 21 21 , requests 22 - , requests_toolbelt 22 + , requests-toolbelt 23 23 , requests-file 24 24 , requests-mock 25 25 , xmlsec ··· 47 47 lxml 48 48 pytz 49 49 requests 50 - requests_toolbelt 50 + requests-toolbelt 51 51 requests-file 52 52 xmlsec 53 53 ];
+1 -1
pkgs/development/tools/analysis/cpplint/default.nix
··· 16 16 patchShebangs cpplint_unittest.py 17 17 ''; 18 18 19 - checkInputs = with python3Packages; [ pytest pytestrunner ]; 19 + checkInputs = with python3Packages; [ pytest pytest-runner ]; 20 20 checkPhase = '' 21 21 ./cpplint_unittest.py 22 22 '';
+2 -2
pkgs/development/tools/asn2quickder/default.nix
··· 1 1 { lib, buildPythonApplication, fetchFromGitHub, makeWrapper, cmake 2 - , pytestrunner, pytest, six, pyparsing, asn1ate }: 2 + , pytest-runner, pytest, six, pyparsing, asn1ate }: 3 3 4 4 buildPythonApplication rec { 5 5 pname = "asn2quickder"; ··· 19 19 dontUseCmakeConfigure = true; 20 20 21 21 nativeBuildInputs = [ makeWrapper cmake ]; 22 - checkInputs = [ pytestrunner pytest ]; 22 + checkInputs = [ pytest-runner pytest ]; 23 23 24 24 propagatedBuildInputs = [ pyparsing asn1ate six ]; 25 25
+1 -1
pkgs/development/tools/cloudsmith-cli/default.nix
··· 23 23 colorama 24 24 future 25 25 requests 26 - requests_toolbelt 26 + requests-toolbelt 27 27 semver 28 28 simplejson 29 29 six
+1 -3
pkgs/development/tools/poetry2nix/poetry2nix/overrides.nix
··· 499 499 old: { 500 500 inherit (pkgs.python3Packages.jira) patches; 501 501 buildInputs = (old.buildInputs or [ ]) ++ [ 502 - self.pytestrunner 502 + self.pytest-runner 503 503 self.cryptography 504 504 self.pyjwt 505 505 ]; ··· 1268 1268 ''; 1269 1269 } 1270 1270 ); 1271 - 1272 - pytest-runner = super.pytest-runner or super.pytestrunner; 1273 1271 1274 1272 pytest-pylint = super.pytest-pylint.overridePythonAttrs ( 1275 1273 old: {
+2 -2
pkgs/development/tools/sourcetrail/jedi.nix
··· 1 1 # Taken from a past commit of nixpkgs 2 2 3 - { lib, buildPythonPackage, fetchPypi, pytest, glibcLocales, tox, pytestcov, parso }: 3 + { lib, buildPythonPackage, fetchPypi, pytest, glibcLocales, tox, pytest-cov, parso }: 4 4 5 5 buildPythonPackage rec { 6 6 pname = "jedi"; ··· 17 17 sha256 = "86ed7d9b750603e4ba582ea8edc678657fb4007894a12bcf6f4bb97892f31d20"; 18 18 }; 19 19 20 - checkInputs = [ pytest glibcLocales tox pytestcov ]; 20 + checkInputs = [ pytest glibcLocales tox pytest-cov ]; 21 21 22 22 propagatedBuildInputs = [ parso ]; 23 23
+1 -1
pkgs/development/tools/vim-vint/default.nix
··· 14 14 # For python 3.5 > version > 2.7 , a nested dependency (pythonPackages.hypothesis) fails. 15 15 disabled = ! pythonAtLeast "3.5"; 16 16 17 - checkInputs = [ pytest pytestcov ]; 17 + checkInputs = [ pytest pytest-cov ]; 18 18 propagatedBuildInputs = [ ansicolor chardet pyyaml setuptools ]; 19 19 20 20 # Unpin test dependency versions. This is fixed in master but not yet released.
+2 -2
pkgs/games/grapejuice/default.nix
··· 15 15 16 16 python3Packages.buildPythonApplication rec { 17 17 pname = "grapejuice"; 18 - version = "3.12.5"; 18 + version = "3.40.14"; 19 19 20 20 src = fetchFromGitLab { 21 21 owner = "BrinkerVII"; 22 22 repo = "grapejuice"; 23 23 rev = "v${version}"; 24 - sha256 = "1xgxyfwwghy9l17i6y40axdrpp4fgxgdr5y97flwmfivif01ifs1"; 24 + sha256 = "1bmkkmi1gx5kc39cjnz5bzwqaicxs0zb6bcv4iny9qccbqf3icrd"; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+1 -1
pkgs/misc/acpilight/default.nix
··· 11 11 }; 12 12 13 13 pyenv = python3.withPackages (pythonPackages: with pythonPackages; [ 14 - ConfigArgParse 14 + configargparse 15 15 ]); 16 16 17 17 postConfigure = ''
+1 -1
pkgs/misc/flashfocus/default.nix
··· 10 10 }; 11 11 12 12 nativeBuildInputs = with python3.pkgs; [ 13 - pytestrunner 13 + pytest-runner 14 14 ]; 15 15 16 16 propagatedBuildInputs = with python3.pkgs; [
+25 -8
pkgs/misc/vscode-extensions/default.nix
··· 85 85 }; 86 86 }; 87 87 88 + angular.ng-template = buildVscodeMarketplaceExtension { 89 + mktplcRef = { 90 + name = "ng-template"; 91 + publisher = "Angular"; 92 + version = "12.1.2"; 93 + sha256 = "sha256-fIHh1eRmu4zSgrtZr0XwLB+1Ad6a/0ABC55akGr0DOA="; 94 + }; 95 + meta = with lib; { 96 + changelog = "https://marketplace.visualstudio.com/items/Angular.ng-template/changelog"; 97 + description = "Editor services for Angular templates"; 98 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=Angular.ng-template"; 99 + homepage = "https://github.com/angular/vscode-ng-language-service"; 100 + license = licenses.mit; 101 + maintainers = with maintainers; [ ratsclub ]; 102 + }; 103 + }; 104 + 88 105 antfu.icons-carbon = buildVscodeMarketplaceExtension { 89 106 mktplcRef = { 90 107 name = "icons-carbon"; ··· 514 531 }; 515 532 516 533 foam.foam-vscode = buildVscodeMarketplaceExtension { 534 + mktplcRef = { 535 + name = "foam-vscode"; 536 + publisher = "foam"; 537 + version = "0.14.1"; 538 + sha256 = "sha256-w9xGkezS3A9z6sTk8WWgW7g8qYX6mJFfRV0lv5cu160="; 539 + }; 517 540 meta = with lib; { 518 541 changelog = "https://marketplace.visualstudio.com/items/foam.foam-vscode/changelog"; 519 542 description = "A personal knowledge management and sharing system for VSCode "; ··· 521 544 homepage = "https://foambubble.github.io/"; 522 545 license = licenses.mit; 523 546 maintainers = with maintainers; [ ratsclub ]; 524 - }; 525 - mktplcRef = { 526 - name = "foam-vscode"; 527 - publisher = "foam"; 528 - version = "0.13.7"; 529 - sha256 = "Y2pcd4iXPiuhJdD/9d+tbTJN18O4+kRMqUdOtbx8xy8="; 530 547 }; 531 548 }; 532 549 ··· 1227 1244 mktplcRef = { 1228 1245 name = "markdown-memo"; 1229 1246 publisher = "svsool"; 1230 - version = "0.3.8"; 1231 - sha256 = "eFiCCXxrOnXwJK1AOMfIDsPGsFG3ArLD1X/uAEH5lRY="; 1247 + version = "0.3.9"; 1248 + sha256 = "sha256-BsKFHR3wkSRHS8QOi63vLwGj3T2CPzvqXhgtEOq6gJM="; 1232 1249 }; 1233 1250 meta = with lib; { 1234 1251 changelog = "https://marketplace.visualstudio.com/items/svsool.markdown-memo/changelog";
+31 -28
pkgs/os-specific/linux/lsiutil/default.nix
··· 1 - { lib, stdenv, fetchurl, unzip }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , kmod 5 + , coreutils 6 + }: 2 7 3 - let 4 - 5 - version = "1.60"; 8 + stdenv.mkDerivation rec { 9 + pname = "lsiutil"; 10 + version = "1.72"; 6 11 7 12 src = fetchurl { 8 - name = "lsiutil-${version}.zip"; 9 - url = "http://www.lsi.com/DistributionSystem/AssetDocument/support/downloads/hbas/fibre_channel/hardware_drivers/LSIUtil%20Kit_${version}.zip"; 10 - sha256 = "1d4337faa56e24f7d98db87b9de94d6e2c17ab671f4e301b93833eea08b9e426"; 13 + url = "https://github.com/exactassembly/meta-xa-stm/raw/f96cf6e13f3c9c980f5651510dd96279b9b2af4f/recipes-support/lsiutil/files/lsiutil-${version}.tar.gz"; 14 + sha256 = "sha256-aTi+EogY1aDWYq3anjRkjz1mzINVfUPQbOPHthxrvS4="; 11 15 }; 12 16 13 - in 17 + buildPhase = '' 18 + runHook preBuild 14 19 15 - stdenv.mkDerivation { 16 - pname = "lsiutils"; 17 - inherit version; 20 + substituteInPlace lsiutil.c \ 21 + --replace /sbin/modprobe "${kmod}/bin/modprobe" \ 22 + --replace /bin/mknod "${coreutils}/bin/mknod" 23 + gcc -Wall -O lsiutil.c -o lsiutil 18 24 19 - srcs = [ src "Source/lsiutil.tar.gz" ]; 25 + runHook postBuild 26 + ''; 20 27 21 - nativeBuildInputs = [ unzip ]; 28 + installPhase = '' 29 + runHook preInstall 22 30 23 - sourceRoot = "lsiutil"; 31 + mkdir -p "$out/bin" 32 + install -Dm755 lsiutil "$out/bin/lsiutil" 24 33 25 - preBuild = 26 - '' 27 - mkdir -p $out/bin 28 - substituteInPlace Makefile --replace /usr/bin $out/bin 29 - substituteInPlace lsiutil.c \ 30 - --replace /sbin/modprobe modprobe \ 31 - --replace /bin/mknod $(type -P mknod) 32 - ''; 34 + runHook postInstall 35 + ''; 33 36 34 - installPhase = "true"; 35 - 36 - meta = { 37 - homepage = "http://www.lsi.com/"; 38 - description = "LSI Logic Fusion MPT command line management tool"; 39 - license = lib.licenses.unfree; 37 + meta = with lib; { 38 + homepage = "https://github.com/exactassembly/meta-xa-stm/tree/master/recipes-support/lsiutil/files"; 39 + description = "Configuration utility for MPT adapters (FC, SCSI, and SAS/SATA)"; 40 + license = licenses.unfree; 41 + platforms = platforms.linux; 42 + maintainers = with maintainers; [ Luflosi ]; 40 43 }; 41 44 }
+2 -2
pkgs/servers/dns/doh-proxy/default.nix
··· 10 10 sha256 = "1fxzxipzdvk75yrcr78mpdz8lwpisba67lk4jcwxdnkv6997dwfp"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pytestrunner flake8]; 13 + nativeBuildInputs = [ pytest-runner flake8]; 14 14 15 15 propagatedBuildInputs = [ 16 16 aioh2 ··· 22 22 asynctest 23 23 unittest-data-provider 24 24 pytest 25 - pytestcov 25 + pytest-cov 26 26 pytest-aiohttp 27 27 ]; 28 28
+2 -2
pkgs/servers/headscale/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "headscale"; 5 - version = "0.3.3"; 5 + version = "0.3.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "juanfont"; 9 9 repo = "headscale"; 10 10 rev = "v${version}"; 11 - sha256 = "0nf2l8l23wzn3l3x4698rfr3g6lkx5qfzsbfl0rv25q1pqgybdzj"; 11 + sha256 = "sha256-O8PJrowP9iDK4sQXHNi1eo44X/tRc7nyKZgJUB6fKC4="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-0Lqr/tWk31S01vi21sG2gtlGouOhecL4u8ScKG0nWLo=";
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 176 176 "digital_ocean" = ps: with ps; [ digital-ocean ]; 177 177 "digitalloggers" = ps: with ps; [ ]; # missing inputs: dlipower 178 178 "directv" = ps: with ps; [ directv ]; 179 - "discogs" = ps: with ps; [ discogs_client ]; 179 + "discogs" = ps: with ps; [ discogs-client ]; 180 180 "discord" = ps: with ps; [ discordpy ]; 181 181 "discovery" = ps: with ps; [ aiohttp-cors ifaddr netdisco zeroconf ]; 182 182 "dlib_face_detect" = ps: with ps; [ face_recognition ];
+1 -1
pkgs/servers/radicale/2.x.nix
··· 26 26 ]; 27 27 28 28 checkInputs = with python3.pkgs; [ 29 - pytestrunner 29 + pytest-runner 30 30 pytest 31 31 ]; 32 32
+1 -1
pkgs/tools/admin/gixy/default.nix
··· 21 21 22 22 propagatedBuildInputs = with python3.pkgs; [ 23 23 cached-property 24 - ConfigArgParse 24 + configargparse 25 25 pyparsing 26 26 jinja2 27 27 nose
+2 -2
pkgs/tools/admin/lexicon/default.nix
··· 65 65 checkInputs = [ 66 66 mock 67 67 pytest 68 - pytestcov 69 - pytest_xdist 68 + pytest-cov 69 + pytest-xdist 70 70 vcrpy 71 71 ]; 72 72
+1 -1
pkgs/tools/admin/salt/pepper/default.nix
··· 13 13 14 14 buildInputs = with python3Packages; [ setuptools setuptools-scm salt ]; 15 15 checkInputs = with python3Packages; [ 16 - pytest mock pyzmq pytest-rerunfailures pytestcov cherrypy tornado 16 + pytest mock pyzmq pytest-rerunfailures pytest-cov cherrypy tornado 17 17 ]; 18 18 19 19 meta = with lib; {
+21 -4
pkgs/tools/admin/virtscreen/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python3Packages, x11vnc, xrandr, libGL }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , python3Packages 5 + , x11vnc 6 + , xrandr 7 + , libGL 8 + , qt5 9 + }: 2 10 3 11 python3Packages.buildPythonApplication rec { 4 12 pname = "virtscreen"; ··· 16 24 sha256 = "005qach6phz8w17k8kqmyd647c6jkfybczybxq0yxi5ik0s91a08"; 17 25 }; 18 26 27 + nativeBuildInputs = [ qt5.wrapQtAppsHook ]; 28 + 19 29 propagatedBuildInputs = with python3Packages; [ 20 30 netifaces 21 31 pyqt5 ··· 24 34 xrandr 25 35 ]; 26 36 27 - postPatch = let 28 - ext = stdenv.hostPlatform.extensions.sharedLibrary; in '' 37 + dontWrapQtApps = true; 38 + 39 + makeWrapperArgs = [ 40 + "\${qtWrapperArgs[@]}" 41 + # import Qt.labs.platform failed without this 42 + "--prefix QML2_IMPORT_PATH : ${qt5.qtquickcontrols2.bin}/${qt5.qtbase.qtQmlPrefix}" 43 + ]; 44 + 45 + postPatch = '' 29 46 substituteInPlace virtscreen/__main__.py \ 30 - --replace "'GL'" "'${libGL}/lib/libGL${ext}'" \ 47 + --replace "'GL'" "'${libGL}/lib/libGL${stdenv.hostPlatform.extensions.sharedLibrary}'" \ 31 48 ''; 32 49 33 50 meta = with lib; {
+2 -2
pkgs/tools/audio/beets/default.nix
··· 133 133 ++ lib.optional enableAcoustid pythonPackages.pyacoustid 134 134 ++ lib.optional enableBeatport pythonPackages.requests_oauthlib 135 135 ++ lib.optional enableConvert ffmpeg 136 - ++ lib.optional enableDiscogs pythonPackages.discogs_client 136 + ++ lib.optional enableDiscogs pythonPackages.discogs-client 137 137 ++ lib.optional (enableFetchart 138 138 || enableDeezer 139 139 || enableEmbyupdate ··· 175 175 # https://github.com/beetbox/beets/blob/v1.4.9/setup.py 176 176 pylast 177 177 mpd2 178 - discogs_client 178 + discogs-client 179 179 pyxdg 180 180 ]; 181 181
+1 -1
pkgs/tools/backup/duplicity/default.nix
··· 100 100 mock 101 101 pexpect 102 102 pytest 103 - pytestrunner 103 + pytest-runner 104 104 ]); 105 105 106 106 postInstall = ''
+3 -3
pkgs/tools/backup/zfs-replicate/default.nix
··· 1 1 { buildPythonApplication, click, fetchPypi, hypothesis, mypy, pytest 2 - , pytestcov, pytestrunner, lib, stringcase 2 + , pytest-cov, pytest-runner, lib, stringcase 3 3 }: 4 4 5 5 buildPythonApplication rec { ··· 15 15 hypothesis 16 16 mypy 17 17 pytest 18 - pytestcov 18 + pytest-cov 19 19 ]; 20 20 21 21 buildInputs = [ 22 - pytestrunner 22 + pytest-runner 23 23 ]; 24 24 25 25 propagatedBuildInputs = [
+14 -14
pkgs/tools/compression/brotli/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, fetchpatch 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , fetchpatch 2 6 , staticOnly ? stdenv.hostPlatform.isStatic 3 7 }: 4 8 ··· 11 15 src = fetchFromGitHub { 12 16 owner = "google"; 13 17 repo = "brotli"; 14 - rev = "v" + version; 18 + rev = "v${version}"; 15 19 sha256 = "z6Dhrabav1MDQ4rAcXaDv0aN+qOoh9cvoXZqEWBB13c="; 16 20 }; 17 21 ··· 24 28 sha256 = "sOeXNVsCaBSD9i82GRUDrkyreGeQ7qaJWjjy/uLL0/0="; 25 29 }); 26 30 27 - cmakeFlags = [] 28 - ++ lib.optional staticOnly "-DBUILD_SHARED_LIBS=OFF"; 31 + cmakeFlags = lib.optional staticOnly "-DBUILD_SHARED_LIBS=OFF"; 29 32 30 33 outputs = [ "out" "dev" "lib" ]; 31 34 ··· 36 39 # This breaks on Darwin because our cmake hook tries to make a build folder 37 40 # and the wonderful bazel BUILD file is already there (yay case-insensitivity?) 38 41 prePatch = '' 39 - rm BUILD 42 + rm BUILD 40 43 41 - # Upstream fixed this reference to runtime-path after the release 42 - # and with this references g++ complains about invalid option -R 43 - sed -i 's/ -R''${libdir}//' scripts/libbrotli*.pc.in 44 - cat scripts/libbrotli*.pc.in 45 - ''; 44 + # Upstream fixed this reference to runtime-path after the release 45 + # and with this references g++ complains about invalid option -R 46 + sed -i 's/ -R''${libdir}//' scripts/libbrotli*.pc.in 47 + cat scripts/libbrotli*.pc.in 48 + ''; 46 49 47 50 # Don't bother with "man" output for now, 48 51 # it currently only makes the manpages hard to use. ··· 53 56 ''; 54 57 55 58 meta = with lib; { 56 - inherit (src.meta) homepage; 57 - 59 + homepage = "https://github.com/google/brotli"; 58 60 description = "A generic-purpose lossless compression algorithm and tool"; 59 - 60 61 longDescription = 61 62 '' Brotli is a generic-purpose lossless compression algorithm that 62 63 compresses data using a combination of a modern variant of the LZ77 ··· 69 70 in the following internet draft: 70 71 http://www.ietf.org/id/draft-alakuijala-brotli 71 72 ''; 72 - 73 73 license = licenses.mit; 74 74 maintainers = with maintainers; [ freezeboy ]; 75 75 platforms = platforms.all;
+9 -8
pkgs/tools/compression/bsc/default.nix
··· 1 - { lib, stdenv, fetchurl, openmp ? null }: 1 + { lib, stdenv, fetchFromGitHub, openmp }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bsc"; 5 5 version = "3.1.0"; 6 6 7 - src = fetchurl { 8 - url = "https://github.com/IlyaGrebnov/libbsc/archive/${version}.tar.gz"; 9 - sha256 = "01yhizaf6qjv1plyrx0fcib264maa5qwvgfvvid9rzlzj9fxjib6"; 7 + src = fetchFromGitHub { 8 + owner = "IlyaGrebnov"; 9 + repo = "libbsc"; 10 + rev = version; 11 + sha256 = "0c0jmirh9y23kyi1jnrm13sa3xsjn54jazfr84ag45pai279fciz"; 10 12 }; 11 13 12 14 enableParallelBuilding = true; 13 15 14 16 buildInputs = lib.optional stdenv.isDarwin openmp; 15 17 16 - prePatch = '' 18 + postPatch = '' 17 19 substituteInPlace makefile \ 18 20 --replace 'g++' '$(CXX)' 19 21 ''; 20 22 21 - preInstall = '' 22 - makeFlagsArray+=("PREFIX=$out") 23 - ''; 23 + makeFlags = [ "PREFIX=$(out)" ]; 24 24 25 25 meta = with lib; { 26 26 description = "High performance block-sorting data compression library"; 27 27 homepage = "http://libbsc.com/"; 28 + maintainers = with maintainers; [ ]; 28 29 # Later commits changed the licence to Apache2 (no release yet, though) 29 30 license = with licenses; [ lgpl3Plus ]; 30 31 platforms = platforms.unix;
+6 -6
pkgs/tools/compression/bsdiff/default.nix
··· 5 5 version = "4.3"; 6 6 7 7 src = fetchurl { 8 - url = "https://www.daemonology.net/bsdiff/${pname}-${version}.tar.gz"; 8 + url = "https://www.daemonology.net/bsdiff/${pname}-${version}.tar.gz"; 9 9 sha256 = "0j2zm3z271x5aw63mwhr3vymzn45p2vvrlrpm9cz2nywna41b0hq"; 10 10 }; 11 11 ··· 27 27 cp bspatch.1 $out/share/man/man1 28 28 ''; 29 29 30 - meta = { 30 + meta = with lib; { 31 31 description = "An efficient binary diff/patch tool"; 32 - homepage = "http://www.daemonology.net/bsdiff"; 33 - license = lib.licenses.bsd2; 34 - platforms = lib.platforms.unix; 35 - maintainers = [ lib.maintainers.thoughtpolice ]; 32 + homepage = "https://www.daemonology.net/bsdiff/"; 33 + license = licenses.bsd2; 34 + platforms = platforms.unix; 35 + maintainers = [ maintainers.thoughtpolice ]; 36 36 }; 37 37 }
+25 -23
pkgs/tools/compression/dejsonlz4/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub }: 2 + 2 3 stdenv.mkDerivation rec { 3 - pname = "dejsonlz4"; 4 - version = "1.1"; 5 - src = fetchFromGitHub { 6 - owner = "avih"; 7 - repo = pname; 8 - rev = "v${version}"; 9 - sha256 = "0ggs69qamaama5mid07mhp95m1x42wljdb953lrwfr7p8p6f8czh"; 10 - }; 4 + pname = "dejsonlz4"; 5 + version = "1.1"; 11 6 12 - buildPhase = '' 13 - ${stdenv.cc.targetPrefix}cc -o dejsonlz4 src/dejsonlz4.c src/lz4.c 14 - ''; 7 + src = fetchFromGitHub { 8 + owner = "avih"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "0ggs69qamaama5mid07mhp95m1x42wljdb953lrwfr7p8p6f8czh"; 12 + }; 15 13 16 - installPhase = '' 17 - mkdir -p $out/bin/ 18 - cp dejsonlz4 $out/bin/ 19 - ''; 14 + buildPhase = '' 15 + ${stdenv.cc.targetPrefix}cc -o dejsonlz4 src/dejsonlz4.c src/lz4.c 16 + ''; 20 17 21 - meta = with lib; { 22 - description = "Decompress Mozilla Firefox bookmarks backup files"; 23 - homepage = "https://github.com/avih/dejsonlz4"; 24 - license = licenses.bsd2; 25 - maintainers = with maintainers; [ mt-caret ]; 26 - platforms = platforms.all; 27 - }; 28 - } 18 + installPhase = '' 19 + mkdir -p $out/bin/ 20 + cp dejsonlz4 $out/bin/ 21 + ''; 22 + 23 + meta = with lib; { 24 + description = "Decompress Mozilla Firefox bookmarks backup files"; 25 + homepage = "https://github.com/avih/dejsonlz4"; 26 + license = licenses.bsd2; 27 + maintainers = with maintainers; [ mt-caret ]; 28 + platforms = platforms.all; 29 + }; 30 + }
+7 -5
pkgs/tools/compression/gzrt/default.nix
··· 1 1 { lib, stdenv, fetchurl, zlib }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "gzrt-0.8"; 4 + pname = "gzrt"; 5 + version = "0.8"; 5 6 6 7 src = fetchurl { 7 - url = "https://www.urbanophile.com/arenn/coding/gzrt/${name}.tar.gz"; 8 + url = "https://www.urbanophile.com/arenn/coding/gzrt/gzrt-${version}.tar.gz"; 8 9 sha256 = "1vhzazj47xfpbfhzkwalz27cc0n5gazddmj3kynhk0yxv99xrdxh"; 9 10 }; 10 11 ··· 15 16 cp gzrecover $out/bin 16 17 ''; 17 18 18 - meta = { 19 + meta = with lib; { 19 20 homepage = "https://www.urbanophile.com/arenn/hacking/gzrt/"; 20 21 description = "The gzip Recovery Toolkit"; 21 - license = lib.licenses.gpl2Plus; 22 - platforms = lib.platforms.unix; 22 + maintainers = with maintainers; [ ]; 23 + license = licenses.gpl2Plus; 24 + platforms = platforms.unix; 23 25 }; 24 26 }
+10 -9
pkgs/tools/compression/kzipmix/default.nix
··· 1 - {lib, stdenv, fetchurl}: 1 + { lib, stdenv, fetchurl }: 2 2 3 - stdenv.mkDerivation { 4 - name = "kzipmix-20091108"; 3 + stdenv.mkDerivation rec { 4 + pname = "kzipmix"; 5 + version = "20200115"; 5 6 6 7 src = fetchurl { 7 - url = "http://static.jonof.id.au/dl/kenutils/kzipmix-20091108-linux.tar.gz"; 8 - sha256 = "19gyn8pblffdz1bf3xkbpzx8a8wn3xb0v411pqzmz5g5l6pm5gph"; 8 + url = "http://static.jonof.id.au/dl/kenutils/kzipmix-${version}-linux.tar.gz"; 9 + sha256 = "sha256-ePgye0D6/ED53zx6xffLnYhkjed7SPU4BLOZQr9E3yA="; 9 10 }; 10 11 11 12 installPhase = '' 12 13 mkdir -p $out/bin 13 - cp kzip zipmix $out/bin 14 + cp amd64/{kzip,zipmix} $out/bin 14 15 15 16 patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux.so.2 $out/bin/kzip 16 17 patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux.so.2 $out/bin/zipmix 17 18 ''; 18 19 19 - meta = { 20 + meta = with lib; { 20 21 description = "A tool that aggressively optimizes the sizes of Zip archives"; 21 - license = lib.licenses.unfree; 22 + license = licenses.unfree; 22 23 homepage = "http://advsys.net/ken/utils.htm"; 23 - maintainers = [ lib.maintainers.sander ]; 24 + maintainers = [ maintainers.sander ]; 24 25 }; 25 26 }
+2 -2
pkgs/tools/compression/lbzip2/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, gnulib, perl, autoconf, automake }: 2 2 3 3 stdenv.mkDerivation rec { 4 + pname = "lbzip2"; 4 5 version = "2.5"; 5 - name = "lbzip2-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kjn"; 9 9 repo = "lbzip2"; 10 - sha256 = "1h321wva6fp6khz6x0i6rqb76xh327nw6v5jhgjpcckwdarj5jv8"; 11 10 rev = "v${version}"; 11 + sha256 = "1h321wva6fp6khz6x0i6rqb76xh327nw6v5jhgjpcckwdarj5jv8"; 12 12 }; 13 13 14 14 buildInputs = [ gnulib perl ];
+11 -8
pkgs/tools/compression/lhasa/default.nix
··· 1 - {lib, stdenv, fetchurl}: 1 + { lib, stdenv, fetchurl }: 2 2 3 - stdenv.mkDerivation { 4 - name = "lhasa-0.3.1"; 3 + stdenv.mkDerivation rec { 4 + pname = "lhasa"; 5 + version = "0.3.1"; 6 + 5 7 src = fetchurl { 6 - url = "https://soulsphere.org/projects/lhasa/lhasa-0.3.1.tar.gz"; 8 + url = "https://soulsphere.org/projects/lhasa/lhasa-${version}.tar.gz"; 7 9 sha256 = "092zi9av18ma20c6h9448k0bapvx2plnp292741dvfd9hmgqxc1z"; 8 10 }; 9 - meta = { 11 + 12 + meta = with lib; { 10 13 description = "Free Software replacement for the Unix LHA tool"; 11 14 longDescription = '' 12 15 Lhasa is a Free Software replacement for the Unix LHA tool, for 13 16 decompressing .lzh (LHA / LHarc) and .lzs (LArc) archives. The backend for 14 17 the tool is a library, so that it can be reused for other purposes. 15 18 ''; 16 - license = lib.licenses.isc; 19 + license = licenses.isc; 17 20 homepage = "http://fragglet.github.io/lhasa"; 18 - maintainers = with lib; [ maintainers.sander ]; 19 - platforms = with lib.platforms; linux ++ darwin; 21 + maintainers = [ maintainers.sander ]; 22 + platforms = platforms.unix; 20 23 }; 21 24 }
+6 -5
pkgs/tools/compression/lrzip/default.nix
··· 1 - {lib, stdenv, fetchurl, zlib, lzo, bzip2, lz4, nasm, perl}: 1 + { lib, stdenv, fetchurl, zlib, lzo, bzip2, lz4, nasm, perl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.641"; 5 4 pname = "lrzip"; 5 + version = "0.641"; 6 6 7 7 src = fetchurl { 8 8 url = "http://ck.kolivas.org/apps/lrzip/${pname}-${version}.tar.xz"; ··· 15 15 "--disable-asm" 16 16 ]; 17 17 18 - meta = { 18 + meta = with lib; { 19 19 homepage = "http://ck.kolivas.org/apps/lrzip/"; 20 20 description = "The CK LRZIP compression program (LZMA + RZIP)"; 21 - license = lib.licenses.gpl2Plus; 22 - platforms = lib.platforms.unix; 21 + maintainers = with maintainers; [ ]; 22 + license = licenses.gpl2Plus; 23 + platforms = platforms.unix; 23 24 }; 24 25 }
+6 -3
pkgs/tools/compression/lzop/default.nix
··· 1 - {lib, stdenv, fetchurl, lzo}: 1 + { lib, stdenv, fetchurl, lzo }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "lzop-1.04"; 4 + pname = "lzop"; 5 + version = "1.04"; 6 + 5 7 src = fetchurl { 6 - url = "https://www.lzop.org/download/${name}.tar.gz"; 8 + url = "https://www.lzop.org/download/lzop-${version}.tar.gz"; 7 9 sha256 = "0h9gb8q7y54m9mvy3jvsmxf21yx8fc3ylzh418hgbbv0i8mbcwky"; 8 10 }; 9 11 ··· 12 14 meta = with lib; { 13 15 homepage = "http://www.lzop.org"; 14 16 description = "Fast file compressor"; 17 + maintainers = with maintainers; [ ]; 15 18 license = licenses.gpl2; 16 19 platforms = platforms.unix; 17 20 };
+13 -15
pkgs/tools/compression/pigz/default.nix
··· 1 1 { lib, stdenv, fetchurl, zlib, util-linux }: 2 2 3 - let name = "pigz"; 4 - version = "2.6"; 5 - in 6 - stdenv.mkDerivation { 7 - name = name + "-" + version; 3 + stdenv.mkDerivation rec { 4 + pname = "pigz"; 5 + version = "2.6"; 8 6 9 7 src = fetchurl { 10 - url = "https://www.zlib.net/${name}/${name}-${version}.tar.gz"; 8 + url = "https://www.zlib.net/${pname}/${pname}-${version}.tar.gz"; 11 9 sha256 = "sha256-Lu17DXRJ0dcJA/KmLNYAXSYus6jJ6YaHvIy7WAnbKn0="; 12 10 }; 13 11 14 12 enableParallelBuilding = true; 15 13 16 - buildInputs = [zlib] ++ lib.optional stdenv.isLinux util-linux; 14 + buildInputs = [ zlib ] ++ lib.optional stdenv.isLinux util-linux; 17 15 18 16 makeFlags = [ "CC=${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc" ]; 19 17 20 18 doCheck = stdenv.isLinux; 21 19 checkTarget = "tests"; 22 - installPhase = 23 - '' 24 - install -Dm755 pigz "$out/bin/pigz" 25 - ln -s pigz "$out/bin/unpigz" 26 - install -Dm755 pigz.1 "$out/share/man/man1/pigz.1" 27 - ln -s pigz.1 "$out/share/man/man1/unpigz.1" 28 - install -Dm755 pigz.pdf "$out/share/doc/pigz/pigz.pdf" 20 + installPhase = '' 21 + install -Dm755 pigz "$out/bin/pigz" 22 + ln -s pigz "$out/bin/unpigz" 23 + install -Dm755 pigz.1 "$out/share/man/man1/pigz.1" 24 + ln -s pigz.1 "$out/share/man/man1/unpigz.1" 25 + install -Dm755 pigz.pdf "$out/share/doc/pigz/pigz.pdf" 29 26 ''; 30 27 31 28 meta = with lib; { 32 - homepage = "http://www.zlib.net/pigz/"; 29 + homepage = "https://www.zlib.net/pigz/"; 33 30 description = "A parallel implementation of gzip for multi-core machines"; 31 + maintainers = with maintainers; [ ]; 34 32 license = licenses.zlib; 35 33 platforms = platforms.unix; 36 34 };
+31 -14
pkgs/tools/compression/pixz/default.nix
··· 1 - { 2 - lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config 3 - , asciidoc, libxslt, libxml2, docbook_xml_dtd_45, docbook_xsl 4 - , libarchive, xz 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoconf 5 + , automake 6 + , libtool 7 + , pkg-config 8 + , asciidoc 9 + , libxslt 10 + , libxml2 11 + , docbook_xml_dtd_45 12 + , docbook_xsl 13 + , libarchive 14 + , xz 5 15 }: 16 + 6 17 stdenv.mkDerivation rec { 7 - baseName = "pixz"; 18 + pname = "pixz"; 8 19 version = "1.0.7"; 9 - name = "${baseName}-${version}"; 10 20 11 21 nativeBuildInputs = [ pkg-config ]; 12 22 buildInputs = [ 13 - autoconf automake libtool asciidoc libxslt libxml2 14 - docbook_xml_dtd_45 docbook_xsl 15 - libarchive xz 23 + autoconf 24 + automake 25 + libtool 26 + asciidoc 27 + libxslt 28 + libxml2 29 + docbook_xml_dtd_45 30 + docbook_xsl 31 + libarchive 32 + xz 16 33 ]; 17 34 preBuild = '' 18 35 echo "XML_CATALOG_FILES='$XML_CATALOG_FILES'" 19 36 ''; 20 37 src = fetchFromGitHub { 21 38 owner = "vasi"; 22 - repo = baseName; 39 + repo = pname; 23 40 rev = "v${version}"; 24 41 sha256 = "163axxs22w7pghr786hda22mnlpvmi50hzhfr9axwyyjl9n41qs2"; 25 42 }; ··· 27 44 ./autogen.sh 28 45 ''; 29 46 30 - meta = { 47 + meta = with lib; { 31 48 description = "A parallel compressor/decompressor for xz format"; 32 - license = lib.licenses.bsd2; 33 - maintainers = [lib.maintainers.raskin]; 34 - platforms = lib.platforms.unix; 49 + license = licenses.bsd2; 50 + maintainers = [ maintainers.raskin ]; 51 + platforms = platforms.unix; 35 52 }; 36 53 }
-36
pkgs/tools/compression/pxz/_SC_ARG_MAX.patch
··· 1 - From b8f9827fc4de9296c7a6f5e6fdac46e070cd6cb4 Mon Sep 17 00:00:00 2001 2 - From: Igor Pashev <pashev.igor@gmail.com> 3 - Date: Sat, 1 Nov 2014 18:10:05 +0300 4 - Subject: [PATCH] Fixed crash on Linux when stack size is unlimited 5 - 6 - --- 7 - pxz.c | 7 +++++-- 8 - 1 file changed, 5 insertions(+), 2 deletions(-) 9 - 10 - diff --git a/pxz.c b/pxz.c 11 - index 9cb843e..52713e2 100644 12 - --- a/pxz.c 13 - +++ b/pxz.c 14 - @@ -65,7 +65,7 @@ FILE **ftemp; 15 - char str[0x100]; 16 - char buf[BUFFSIZE]; 17 - char *xzcmd; 18 - -size_t xzcmd_max; 19 - +const size_t xzcmd_max = 10240; 20 - 21 - unsigned opt_complevel = 6, opt_stdout, opt_keep, opt_threads, opt_verbose; 22 - unsigned opt_force, opt_stdout; 23 - @@ -243,9 +243,12 @@ int main( int argc, char **argv ) { 24 - lzma_filter filters[LZMA_FILTERS_MAX + 1]; 25 - lzma_options_lzma lzma_options; 26 - 27 - - xzcmd_max = sysconf(_SC_ARG_MAX); 28 - page_size = sysconf(_SC_PAGE_SIZE); 29 - xzcmd = malloc(xzcmd_max); 30 - + if (!xzcmd) { 31 - + fprintf(stderr, "Failed to allocate %lu bytes for xz command.\n", xzcmd_max); 32 - + return -1; 33 - + } 34 - snprintf(xzcmd, xzcmd_max, XZ_BINARY); 35 - 36 - parse_args(argc, argv);
+18 -18
pkgs/tools/compression/pxz/default.nix
··· 1 - { lib, stdenv, fetchgit, xz }: 1 + { lib, stdenv, fetchFromGitHub, xz }: 2 2 3 - let name = "pxz"; 4 - version = "4.999.9beta+git"; 5 - in 6 - stdenv.mkDerivation { 7 - name = name + "-" + version; 3 + stdenv.mkDerivation rec { 4 + pname = "pxz"; 5 + version = "4.999.9beta+git"; 8 6 9 - src = fetchgit { 10 - url = "https://github.com/jnovy/pxz.git"; 11 - rev = "ae808463c2950edfdedb8fb49f95006db0a18667"; 12 - sha256 = "0na2kw8cf0qd8l1aywlv9m3xrxnqlcwxfdwp3f7x9vxwqx3k32kc"; 7 + src = fetchFromGitHub { 8 + owner = "jnovy"; 9 + repo = "pxz"; 10 + rev = "124382a6d0832b13b7c091f72264f8f3f463070a"; 11 + sha256 = "15mmv832iqsqwigidvwnf0nyivxf0y8m22j2szy4h0xr76x4z21m"; 13 12 }; 14 13 15 14 buildInputs = [ xz ]; 16 - 17 - patches = [ ./_SC_ARG_MAX.patch ]; 18 15 19 16 buildPhase = '' 20 17 gcc -o pxz pxz.c -llzma \ ··· 30 27 cp pxz.1 $out/share/man/man1 31 28 ''; 32 29 33 - meta = { 30 + meta = with lib; { 34 31 homepage = "https://jnovy.fedorapeople.org/pxz/"; 35 - license = lib.licenses.gpl2Plus; 36 - maintainers = with lib.maintainers; [pashev]; 37 - description = ''Parallel XZ is a compression utility that takes advantage of 32 + license = licenses.gpl2Plus; 33 + maintainers = with maintainers; [ pashev ]; 34 + description = "compression utility that runs LZMA compression of different parts on multiple cores simultaneously"; 35 + longDescription = '' 36 + Parallel XZ is a compression utility that takes advantage of 38 37 running LZMA compression of different parts of an input file on multiple 39 38 cores and processors simultaneously. Its primary goal is to utilize all 40 39 resources to speed up compression time with minimal possible influence 41 - on compression ratio''; 42 - platforms = with lib.platforms; linux; 40 + on compression ratio 41 + ''; 42 + platforms = with platforms; linux; 43 43 }; 44 44 }
+10 -7
pkgs/tools/compression/rzip/default.nix
··· 1 - {lib, stdenv, fetchurl, fetchpatch, bzip2}: 1 + { lib, stdenv, fetchurl, fetchpatch, bzip2 }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "rzip"; 5 + version = "2.1"; 2 6 3 - stdenv.mkDerivation { 4 - name = "rzip-2.1"; 5 7 src = fetchurl { 6 - url = "mirror://samba/rzip/rzip-2.1.tar.gz"; 8 + url = "mirror://samba/rzip/rzip-${version}.tar.gz"; 7 9 sha256 = "4bb96f4d58ccf16749ed3f836957ce97dbcff3e3ee5fd50266229a48f89815b7"; 8 10 }; 9 11 buildInputs = [ bzip2 ]; ··· 16 18 }) 17 19 ]; 18 20 19 - meta = { 21 + meta = with lib; { 20 22 homepage = "https://rzip.samba.org/"; 21 23 description = "Compression program"; 22 - license = lib.licenses.gpl2Plus; 23 - platforms = lib.platforms.unix; 24 + maintainers = with maintainers; [ ]; 25 + license = licenses.gpl2Plus; 26 + platforms = platforms.unix; 24 27 }; 25 28 }
+8 -7
pkgs/tools/compression/zsync/default.nix
··· 1 - {lib, stdenv, fetchurl}: 1 + { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "zsync-0.6.2"; 4 + pname = "zsync"; 5 + version = "0.6.2"; 5 6 6 7 src = fetchurl { 7 - url = "http://zsync.moria.org.uk/download/${name}.tar.bz2"; 8 + url = "http://zsync.moria.org.uk/download/${pname}-${version}.tar.bz2"; 8 9 sha256 = "1wjslvfy76szf0mgg2i9y9q30858xyjn6v2acc24zal76d1m778b"; 9 10 }; 10 11 11 12 makeFlags = [ "AR=${stdenv.cc.bintools.targetPrefix}ar" ]; 12 13 13 - meta = { 14 + meta = with lib; { 14 15 homepage = "http://zsync.moria.org.uk/"; 15 16 description = "File distribution system using the rsync algorithm"; 16 - license = lib.licenses.free; 17 - maintainers = with lib.maintainers; [viric]; 18 - platforms = with lib.platforms; all; 17 + license = licenses.free; 18 + maintainers = with maintainers; [ viric ]; 19 + platforms = with platforms; all; 19 20 }; 20 21 }
+1 -1
pkgs/tools/filesystems/gitfs/default.nix
··· 22 22 'from pygit2 import RemoteCallbacks' 23 23 ''; 24 24 25 - checkInputs = with python3Packages; [ pytest pytestcov mock ]; 25 + checkInputs = with python3Packages; [ pytest pytest-cov mock ]; 26 26 propagatedBuildInputs = with python3Packages; [ atomiclong fusepy pygit2 six ]; 27 27 28 28 checkPhase = "py.test";
+2 -2
pkgs/tools/graphics/gmic/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "gmic"; 18 - version = "2.9.7"; 18 + version = "2.9.8"; 19 19 20 20 outputs = [ "out" "lib" "dev" "man" ]; 21 21 22 22 src = fetchurl { 23 23 url = "https://gmic.eu/files/source/gmic_${version}.tar.gz"; 24 - sha256 = "sha256-lCU3SH6nIhQSMFeds81DMTaEKcDjPLOP7hsXqulVfxY="; 24 + sha256 = "sha256-GNa7xzGuO02oplasGJR2eTsRGp3Rn3LbIxLwdN983II="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+1 -1
pkgs/tools/misc/bonfire/default.nix
··· 29 29 --replace "data_files = *.rst, *.txt" "" 30 30 ''; 31 31 32 - buildInputs = [ httpretty pytest pytestcov ]; 32 + buildInputs = [ httpretty pytest pytest-cov ]; 33 33 34 34 preCheck = '' 35 35 # fix compatibility with pytest 4
+3 -3
pkgs/tools/misc/dua/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "dua"; 5 - version = "2.14.1"; 5 + version = "2.14.2"; 6 6 7 7 buildInputs = lib.optionals stdenv.isDarwin [ libiconv ]; 8 8 ··· 10 10 owner = "Byron"; 11 11 repo = "dua-cli"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-46azJ7q0Ix/8wdg01hYQ2V2E4tBD/NDdHpexnFBD5so="; 13 + sha256 = "sha256-gUTDiUH/jlGAGbhOOCa63wfNy5Y8W6VWlSb9E+hQjHY="; 14 14 # Remove unicode file names which leads to different checksums on HFS+ 15 15 # vs. other filesystems because of unicode normalisation. 16 16 extraPostFetch = '' ··· 18 18 ''; 19 19 }; 20 20 21 - cargoSha256 = "sha256-hCf6Ih2bJrMX2ntWbIrX3Dk8wI5tio+OcN4WNWuU7j4="; 21 + cargoSha256 = "sha256-P8QFeP5KD5YeD4Px7OQNwCrvErgT9ytr4OlFkXuPgGU="; 22 22 23 23 doCheck = false; 24 24
+3 -3
pkgs/tools/misc/fcp/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "fcp"; 5 - version = "0.2.0"; 5 + version = "0.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "svetlitski"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0ahd79dh48hsi4bhs4zs0a7hr55jzsjix9c61lc42ipdbqgifg2d"; 11 + sha256 = "0f242n8w88rikg1srimdifadhggrb2r1z0g65id60ahb4bjm8a0x"; 12 12 }; 13 13 14 - cargoSha256 = "1arrw4fz3f3wfjy9nb8vm707vhh4x0vv9wv8z2s07b4qcwwih8k4"; 14 + cargoSha256 = "0gw7gjfwc4r03rg6z65ml0y37sh4yf716isqs0mb4jqkp7rwfbc9"; 15 15 16 16 nativeBuildInputs = [ expect ]; 17 17
+2 -2
pkgs/tools/misc/yle-dl/default.nix
··· 12 12 }; 13 13 14 14 propagatedBuildInputs = with python3Packages; [ 15 - attrs ConfigArgParse ffmpeg future lxml requests 15 + attrs configargparse ffmpeg future lxml requests 16 16 ]; 17 17 pythonPath = [ rtmpdump php wget ]; 18 18 19 19 doCheck = false; # tests require network access 20 - checkInputs = with python3Packages; [ ffmpeg pytest pytestrunner ]; 20 + checkInputs = with python3Packages; [ ffmpeg pytest pytest-runner ]; 21 21 22 22 meta = with lib; { 23 23 description = "Downloads videos from Yle (Finnish Broadcasting Company) servers";
+2 -2
pkgs/tools/networking/dnsproxy/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnsproxy"; 5 - version = "0.38.2"; 5 + version = "0.38.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "AdguardTeam"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-v2uVIFPc8h58W03Jo2vsbLT5f7F8bJw4uMtSErrBYdo="; 11 + sha256 = "sha256-VfEfxcewKo8D8kNsMuCvrLOZNl632ZIFyD+RG8qzjQ4="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+1 -1
pkgs/tools/networking/linkchecker/default.nix
··· 16 16 nativeBuildInputs = [ gettext ]; 17 17 18 18 propagatedBuildInputs = [ 19 - ConfigArgParse 19 + configargparse 20 20 argcomplete 21 21 beautifulsoup4 22 22 pyopenssl
+1 -1
pkgs/tools/security/sequoia/default.nix
··· 51 51 52 52 checkInputs = lib.optionals pythonSupport [ 53 53 pythonPackages.pytest 54 - pythonPackages.pytestrunner 54 + pythonPackages.pytest-runner 55 55 ]; 56 56 57 57 buildInputs = [
+1 -1
pkgs/tools/security/vulnix/default.nix
··· 19 19 checkInputs = with python3Packages; [ 20 20 freezegun 21 21 pytest 22 - pytestcov 22 + pytest-cov 23 23 pytest-flake8 24 24 ]; 25 25
+3 -3
pkgs/tools/system/hostctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "hostctl"; 5 - version = "1.0.14"; 5 + version = "1.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "guumaster"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "02bjii97l4fy43v2rb93m9b0ad8y6mjvbvp4sz6a5n0w9dm1z1q9"; 11 + sha256 = "sha256-X07JvXN1mwOQE2XBfaYbqQnQ92fBSg/Erj0yUygAqmM="; 12 12 }; 13 13 14 - vendorSha256 = "1lqk3cda0frqp2vwkqa4b3xkdw814wgkbr7g9r2mwxn85fpdcq5c"; 14 + vendorSha256 = "sha256-rGDWrivIdl5FTu/kNR8nAfE2+1hE4cm3uDg7oBobE9M="; 15 15 16 16 buildFlagsArray = [ "-ldflags=-s -w -X github.com/guumaster/hostctl/cmd/hostctl/actions.version=${version}" ]; 17 17
+1 -1
pkgs/tools/text/ocrmypdf/default.nix
··· 64 64 pypdf2 65 65 pytest 66 66 pytest-helpers-namespace 67 - pytest_xdist 67 + pytest-xdist 68 68 pytest-cov 69 69 python-xmp-toolkit 70 70 pytestCheckHook
+1
pkgs/top-level/aliases.nix
··· 889 889 virtviewer = virt-viewer; # added 2015-12-24 890 890 virtmanager = virt-manager; # added 2019-10-29 891 891 virtmanager-qt = virt-manager-qt; # added 2019-10-29 892 + virtinst = throw "virtinst has been removed, as it's included in virt-manager"; # added 2021-07-21 892 893 vorbisTools = vorbis-tools; # added 2016-01-26 893 894 webkit = webkitgtk; # added 2019-03-05 894 895 webkitgtk24x-gtk3 = throw "webkitgtk24x-gtk3 has been removed because it's insecure. Please use webkitgtk."; # added 2019-12-05
+14 -6
pkgs/top-level/all-packages.nix
··· 931 931 932 932 cool-retro-term = libsForQt5.callPackage ../applications/terminal-emulators/cool-retro-term { }; 933 933 934 + coreterminal = libsForQt5.callPackage ../applications/terminal-emulators/coreterminal { 935 + inherit (lxqt) qtermwidget; 936 + }; 937 + 934 938 eterm = callPackage ../applications/terminal-emulators/eterm { }; 935 939 936 940 evilvte = callPackage ../applications/terminal-emulators/evilvte (config.evilvte or {}); ··· 6366 6370 libcsptr = callPackage ../development/libraries/libcsptr { }; 6367 6371 6368 6372 libscrypt = callPackage ../development/libraries/libscrypt { }; 6373 + 6374 + libcprime = libsForQt5.callPackage ../development/libraries/libcprime { }; 6369 6375 6370 6376 libcloudproviders = callPackage ../development/libraries/libcloudproviders { }; 6371 6377 ··· 13955 13961 13956 13962 nix-build-uncached = callPackage ../development/tools/misc/nix-build-uncached { }; 13957 13963 13958 - nexus = callPackage ../development/tools/repository-managers/nexus { }; 13964 + nexus = callPackage ../development/tools/repository-managers/nexus { 13965 + jre_headless = jre8_headless; 13966 + }; 13959 13967 13960 13968 nwjs = callPackage ../development/tools/nwjs { 13961 13969 gconf = pkgs.gnome2.GConf; ··· 22974 22982 acd-cli = callPackage ../applications/networking/sync/acd_cli { 22975 22983 inherit (python3Packages) 22976 22984 buildPythonApplication appdirs colorama python-dateutil 22977 - requests requests_toolbelt setuptools sqlalchemy fusepy; 22985 + requests requests-toolbelt setuptools sqlalchemy fusepy; 22978 22986 }; 22979 22987 22980 22988 adobe-reader = pkgsi686Linux.callPackage ../applications/misc/adobe-reader { }; ··· 23470 23478 }; 23471 23479 23472 23480 corrscope = libsForQt5.callPackage ../applications/video/corrscope { }; 23481 + 23482 + coreimage = libsForQt5.callPackage ../applications/graphics/coreimage { }; 23473 23483 23474 23484 csa = callPackage ../applications/audio/csa { }; 23475 23485 ··· 25550 25560 25551 25561 matrixcli = callPackage ../applications/networking/instant-messengers/matrixcli { 25552 25562 inherit (python3Packages) buildPythonApplication buildPythonPackage 25553 - pygobject3 pytestrunner requests responses pytest python-olm 25563 + pygobject3 pytest-runner requests responses pytest python-olm 25554 25564 canonicaljson; 25555 25565 }; 25556 25566 ··· 26839 26849 rofi-systemd = callPackage ../tools/system/rofi-systemd { }; 26840 26850 26841 26851 rofimoji = callPackage ../applications/misc/rofimoji { 26842 - inherit (python3Packages) buildPythonApplication ConfigArgParse; 26852 + inherit (python3Packages) buildPythonApplication configargparse; 26843 26853 }; 26844 26854 26845 26855 rootlesskit = callPackage ../tools/virtualization/rootlesskit {}; ··· 27716 27726 virt-manager-qt = libsForQt5.callPackage ../applications/virtualization/virt-manager/qt.nix { 27717 27727 qtermwidget = lxqt.qtermwidget; 27718 27728 }; 27719 - 27720 - virtinst = callPackage ../applications/virtualization/virtinst {}; 27721 27729 27722 27730 virtscreen = callPackage ../tools/admin/virtscreen {}; 27723 27731
+11 -1
pkgs/top-level/python-aliases.nix
··· 34 34 35 35 mapAliases ({ 36 36 blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # Added 2020-11-29 37 + bt_proximity = bt-proximity; # added 2021-07-02 37 38 bugseverywhere = throw "bugseverywhere has been removed: Abandoned by upstream."; # Added 2019-11-27 39 + ConfigArgParse = configargparse; # added 2021-03-18 38 40 dateutil = python-dateutil; # added 2021-07-03 39 41 detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04 40 42 dftfit = throw "it's dependency lammps-cython no longer builds"; 41 43 diff_cover = diff-cover; # added 2021-07-02 42 44 discogs_client = discogs-client; # added 2021-07-02 45 + djangorestframework-jwt = drf-jwt; 43 46 dns = dnspython; # Alias for compatibility, 2017-12-10 44 47 faulthandler = throw "faulthandler is built into ${python.executable}"; 45 48 gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14 ··· 52 55 privacyidea = throw "renamed to pkgs.privacyidea"; # added 2021-06-20 53 56 pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20 54 57 pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04 58 + pytestcov = pytest-cov; # added 2021-01-04 55 59 pytest-pep8 = pytestpep8; # added 2021-01-04 56 60 pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10 61 + pytestquickcheck = pytest-quickcheck; # added 2021-07-20 62 + pytestrunner = pytest-runner; # added 2021-01-04 63 + pytest_xdist = pytest-xdist; # added 2021-01-04 64 + python_simple_hipchat = python-simple-hipchat; # added 2021-07-21 57 65 qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09 66 + requests_toolbelt = requests-toolbelt; # added 2017-09-26 58 67 rotate-backups = throw "pythonPackages.rotate-backups was removed in favor of the top-level rotate-backups"; # added 2021-07-01 68 + scikitlearn = scikit-learn; # added 2021-07-21 59 69 selectors34 = throw "selectors34 has been removed: functionality provided by Python itself; archived by upstream."; # Added 2021-06-10 60 70 setuptools_scm = setuptools-scm; # added 2021-06-03 61 71 smart_open = smart-open; # added 2021-03-14 ··· 63 73 topydo = throw "python3Packages.topydo was moved to topydo"; # 2017-09-22 64 74 tvnamer = throw "python3Packages.tvnamer was moved to tvnamer"; # 2021-07-05 65 75 websocket_client = websocket-client; 66 - bt_proximity = bt-proximity; # added 2021-07-02 76 + zc_buildout221 = zc_buildout; # added 2021-07-21 67 77 })
+4 -18
pkgs/top-level/python-packages.nix
··· 1609 1609 1610 1610 conda = callPackage ../development/python-modules/conda { }; 1611 1611 1612 - ConfigArgParse = self.configargparse; # added 2021-03-18 1613 1612 configargparse = callPackage ../development/python-modules/configargparse { }; 1614 1613 1615 1614 configobj = callPackage ../development/python-modules/configobj { }; ··· 2065 2064 django-rest-auth = callPackage ../development/python-modules/django-rest-auth { }; 2066 2065 2067 2066 djangorestframework = callPackage ../development/python-modules/djangorestframework { }; 2068 - 2069 - djangorestframework-jwt = self.drf-jwt; 2070 2067 2071 2068 djangorestframework-simplejwt = callPackage ../development/python-modules/djangorestframework-simplejwt { }; 2072 2069 ··· 6792 6789 6793 6790 pytest-console-scripts = callPackage ../development/python-modules/pytest-console-scripts { }; 6794 6791 6795 - pytest-cov = self.pytestcov; # self 2021-01-04 6796 - pytestcov = callPackage ../development/python-modules/pytest-cov { }; 6792 + pytest-cov = callPackage ../development/python-modules/pytest-cov { }; 6797 6793 6798 6794 pytest-cram = callPackage ../development/python-modules/pytest-cram { }; 6799 6795 ··· 6869 6865 6870 6866 pytest-qt = callPackage ../development/python-modules/pytest-qt { }; 6871 6867 6872 - pytest-quickcheck = self.pytestquickcheck; 6873 - pytestquickcheck = callPackage ../development/python-modules/pytest-quickcheck { }; 6868 + pytest-quickcheck = callPackage ../development/python-modules/pytest-quickcheck { }; 6874 6869 6875 6870 pytest-raises = callPackage ../development/python-modules/pytest-raises { }; 6876 6871 ··· 6890 6885 6891 6886 pytest-rerunfailures = callPackage ../development/python-modules/pytest-rerunfailures { }; 6892 6887 6893 - pytest-runner = self.pytestrunner; # added 2021-01-04 6894 - pytestrunner = callPackage ../development/python-modules/pytestrunner { }; 6888 + pytest-runner = callPackage ../development/python-modules/pytest-runner { }; 6895 6889 6896 6890 pytest-sanic = callPackage ../development/python-modules/pytest-sanic { 6897 6891 sanic = self.sanic.override { doCheck = false; }; ··· 6935 6929 6936 6930 pytest-watch = callPackage ../development/python-modules/pytest-watch { }; 6937 6931 6938 - pytest_xdist = self.pytest-xdist; # added 2021-01-04 6939 6932 pytest-xdist = callPackage ../development/python-modules/pytest-xdist { }; 6940 6933 6941 6934 pytest-xprocess = callPackage ../development/python-modules/pytest-xprocess { }; ··· 7134 7127 python-sat = callPackage ../development/python-modules/python-sat { }; 7135 7128 7136 7129 python-simple-hipchat = callPackage ../development/python-modules/python-simple-hipchat { }; 7137 - python_simple_hipchat = self.python-simple-hipchat; 7138 7130 7139 7131 python-slugify = callPackage ../development/python-modules/python-slugify { }; 7140 7132 ··· 7564 7556 7565 7557 requests-toolbelt = callPackage ../development/python-modules/requests-toolbelt { }; 7566 7558 7567 - requests_toolbelt = self.requests-toolbelt; # Old attr, 2017-09-26 7568 - 7569 7559 requests-unixsocket = callPackage ../development/python-modules/requests-unixsocket { }; 7570 7560 7571 7561 requirements-detector = callPackage ../development/python-modules/requirements-detector { }; ··· 7818 7808 scikit-learn = callPackage ../development/python-modules/scikit-learn { 7819 7809 inherit (pkgs) gfortran glibcLocales; 7820 7810 }; 7821 - 7822 - scikitlearn = self.scikit-learn; 7823 7811 7824 7812 scikit-optimize = callPackage ../development/python-modules/scikit-optimize { }; 7825 7813 ··· 9464 9452 9465 9453 zarr = callPackage ../development/python-modules/zarr { }; 9466 9454 9467 - zc_buildout221 = callPackage ../development/python-modules/buildout { }; 9468 - 9469 - zc_buildout = self.zc_buildout221; # A patched version of buildout, useful for buildout based development on Nix 9455 + zc_buildout = callPackage ../development/python-modules/buildout { }; 9470 9456 9471 9457 zc_buildout_nix = callPackage ../development/python-modules/buildout-nix { }; 9472 9458
+1 -2
pkgs/top-level/python2-packages.nix
··· 478 478 479 479 pytest-mock = callPackage ../development/python-modules/pytest-mock/2.nix { }; 480 480 481 - pytestrunner = callPackage ../development/python-modules/pytestrunner/2.nix { }; 481 + pytest-runner = callPackage ../development/python-modules/pytest-runner/2.nix { }; 482 482 483 - pytest_xdist = self.pytest-xdist; # added 2021-01-04 484 483 pytest-xdist = callPackage ../development/python-modules/pytest-xdist/1.nix { }; 485 484 486 485 python-otr = callPackage ../development/python-modules/python-otr { };