mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
Merge master into haskell-updates
This commit is contained in:
commit
6a6b10fd9a
@ -439,7 +439,7 @@ The following example shows which arguments are given to `buildPythonPackage` in
|
||||
order to build [`datashape`](https://github.com/blaze/datashape).
|
||||
|
||||
```nix
|
||||
{ lib, buildPythonPackage, fetchPypi, numpy, multipledispatch, dateutil, pytest }:
|
||||
{ lib, buildPythonPackage, fetchPypi, numpy, multipledispatch, python-dateutil, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "datashape";
|
||||
@ -451,7 +451,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
propagatedBuildInputs = [ numpy multipledispatch dateutil ];
|
||||
propagatedBuildInputs = [ numpy multipledispatch python-dateutil ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ContinuumIO/datashape";
|
||||
@ -463,7 +463,7 @@ buildPythonPackage rec {
|
||||
```
|
||||
|
||||
We can see several runtime dependencies, `numpy`, `multipledispatch`, and
|
||||
`dateutil`. Furthermore, we have one `checkInputs`, i.e. `pytest`. `pytest` is a
|
||||
`python-dateutil`. Furthermore, we have one `checkInputs`, i.e. `pytest`. `pytest` is a
|
||||
test runner and is only used during the `checkPhase` and is therefore not added
|
||||
to `propagatedBuildInputs`.
|
||||
|
||||
|
@ -95,7 +95,7 @@ rec {
|
||||
result with the specified separator interspersed between
|
||||
elements.
|
||||
|
||||
Type: concatMapStringsSep :: string -> (string -> string) -> [string] -> string
|
||||
Type: concatMapStringsSep :: string -> (a -> string) -> [a] -> string
|
||||
|
||||
Example:
|
||||
concatMapStringsSep "-" (x: toUpper x) ["foo" "bar" "baz"]
|
||||
@ -112,7 +112,7 @@ rec {
|
||||
/* Same as `concatMapStringsSep`, but the mapping function
|
||||
additionally receives the position of its argument.
|
||||
|
||||
Type: concatIMapStringsSep :: string -> (int -> string -> string) -> [string] -> string
|
||||
Type: concatIMapStringsSep :: string -> (int -> a -> string) -> [a] -> string
|
||||
|
||||
Example:
|
||||
concatImapStringsSep "-" (pos: x: toString (x / pos)) [ 6 6 6 ]
|
||||
|
@ -446,8 +446,8 @@
|
||||
password for the <literal>root</literal> user, e.g.
|
||||
<screen>
|
||||
setting root password...
|
||||
Enter new UNIX password: ***
|
||||
Retype new UNIX password: ***</screen>
|
||||
New password: ***
|
||||
Retype new password: ***</screen>
|
||||
<note>
|
||||
<para>
|
||||
For unattended installations, it is possible to use
|
||||
|
@ -40,7 +40,7 @@ pythonPackages.buildPythonApplication rec {
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
chromaprint
|
||||
dateutil
|
||||
python-dateutil
|
||||
discid
|
||||
fasteners
|
||||
mutagen
|
||||
|
@ -1,30 +1,34 @@
|
||||
{ lib, stdenv, fetchurl, alsa-lib, gtk2, pkg-config }:
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, wrapGAppsHook, alsa-lib, gtk3, libpulseaudio }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "praat";
|
||||
version = "6.0.43";
|
||||
version = "6.1.50";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/praat/praat/archive/v${version}.tar.gz";
|
||||
sha256 = "1l13bvnl7sv8v6s5z63201bhzavnj6bnqcj446akippsam13z4sf";
|
||||
src = fetchFromGitHub {
|
||||
owner = "praat";
|
||||
repo = "praat";
|
||||
rev = "v${version}";
|
||||
sha256 = "11cw4292pml71hdnfy8y91blwyh45dyam1ywr09355zk44c5njpq";
|
||||
};
|
||||
|
||||
configurePhase = ''
|
||||
cp makefiles/makefile.defs.linux.alsa makefile.defs
|
||||
cp makefiles/makefile.defs.linux.pulse makefile.defs
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp praat $out/bin
|
||||
install -Dt $out/bin praat
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ alsa-lib gtk2 ];
|
||||
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
|
||||
buildInputs = [ alsa-lib gtk3 libpulseaudio ];
|
||||
|
||||
meta = {
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Doing phonetics by computer";
|
||||
homepage = "https://www.fon.hum.uva.nl/praat/";
|
||||
license = lib.licenses.gpl2Plus; # Has some 3rd-party code in it though
|
||||
platforms = lib.platforms.linux;
|
||||
license = licenses.gpl2Plus; # Has some 3rd-party code in it though
|
||||
maintainers = with maintainers; [ orivej ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ flex bison zlib proj gdal libtiff libpng fftw sqlite cairo proj
|
||||
readline ffmpeg_3 makeWrapper wxGTK30 netcdf geos postgresql libmysqlclient blas
|
||||
libLAS proj-datumgrid ]
|
||||
++ (with python2Packages; [ python dateutil wxPython30 numpy ]);
|
||||
++ (with python2Packages; [ python python-dateutil wxPython30 numpy ]);
|
||||
|
||||
# On Darwin the installer tries to symlink the help files into a system
|
||||
# directory
|
||||
|
@ -12,7 +12,7 @@ let
|
||||
numpy
|
||||
psycopg2
|
||||
chardet
|
||||
dateutil
|
||||
python-dateutil
|
||||
pyyaml
|
||||
pytz
|
||||
requests
|
||||
|
@ -55,7 +55,7 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
|
||||
psutil
|
||||
pyxdg
|
||||
arrow
|
||||
dateutil
|
||||
python-dateutil
|
||||
easygui
|
||||
colour
|
||||
pymediainfo
|
||||
|
@ -77,7 +77,7 @@ mkDerivation rec {
|
||||
cchardet
|
||||
css-parser
|
||||
cssselect
|
||||
dateutil
|
||||
python-dateutil
|
||||
dnspython
|
||||
feedparser
|
||||
html2text
|
||||
|
@ -3,20 +3,20 @@
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "cura";
|
||||
version = "4.9.0";
|
||||
version = "4.10.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Ultimaker";
|
||||
repo = "Cura";
|
||||
rev = version;
|
||||
sha256 = "1q515qwrzla3ikbsjmk91y0nrbwih11jycgmd50lkrmnkh7qj0r2";
|
||||
sha256 = "0v65xg31rw4kc7f98k8zz0kmhrp9m55k8ahblha9r1vr4krcf30z";
|
||||
};
|
||||
|
||||
materials = fetchFromGitHub {
|
||||
owner = "Ultimaker";
|
||||
repo = "fdm_materials";
|
||||
rev = version;
|
||||
sha256 = "0hi9w1fsnazlr0vvxdr3alsdb8m1vjjfp5zhmlz4kyyxhsy3bc33";
|
||||
sha256 = "0ykf14j4yx4cf12qw0d4bff9ixrx96m6wxqvi83sn721y7dsd2rs";
|
||||
};
|
||||
|
||||
buildInputs = [ qtbase qtquickcontrols2 qtgraphicaleffects ];
|
||||
|
@ -20,7 +20,7 @@ buildPythonApplication rec {
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil gflags httplib2 parsedatetime six vobject
|
||||
python-dateutil gflags httplib2 parsedatetime six vobject
|
||||
google-api-python-client oauth2client uritemplate
|
||||
libnotify
|
||||
];
|
||||
|
@ -9,16 +9,12 @@ with python3.pkgs; buildPythonApplication rec {
|
||||
sha256 = "sha256-L92PwU/ll+Wn1unGPHho2WC07QIbVjxoSnHwcJDtpDI=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
./skip-broken-test.patch
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
atomicwrites
|
||||
click
|
||||
click-log
|
||||
configobj
|
||||
dateutil
|
||||
python-dateutil
|
||||
icalendar
|
||||
lxml
|
||||
pkgs.vdirsyncer
|
||||
@ -31,16 +27,12 @@ with python3.pkgs; buildPythonApplication rec {
|
||||
freezegun
|
||||
];
|
||||
nativeBuildInputs = [ setuptools-scm sphinx sphinxcontrib_newsfeed ];
|
||||
checkInputs = [ pytest glibcLocales ];
|
||||
checkInputs = [
|
||||
glibcLocales
|
||||
pytestCheckHook
|
||||
];
|
||||
LC_ALL = "en_US.UTF-8";
|
||||
|
||||
postPatch = ''
|
||||
sed -i \
|
||||
-e "s/Invalid value for \"ics\"/Invalid value for \\\'ics\\\'/" \
|
||||
-e "s/Invalid value for \"\[ICS\]\"/Invalid value for \\\'\[ICS\]\\\'/" \
|
||||
tests/cli_test.py
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
# zsh completion
|
||||
install -D misc/__khal $out/share/zsh/site-functions/__khal
|
||||
@ -56,11 +48,13 @@ with python3.pkgs; buildPythonApplication rec {
|
||||
|
||||
doCheck = !stdenv.isAarch64;
|
||||
|
||||
checkPhase = ''
|
||||
py.test -k "not test_vertical_month_abbr_fr and not test_vertical_month_unicode_weekdeays_gr \
|
||||
and not test_event_different_timezones and not test_default_calendar and not test_birthdays \
|
||||
and not test_birthdays_no_year"
|
||||
'';
|
||||
disabledTests = [
|
||||
# This test is failing due to https://github.com/pimutils/khal/issues/1065
|
||||
"test_print_ics_command"
|
||||
|
||||
# Mocking breaks in this testcase
|
||||
"test_import_from_stdin"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://lostpackets.de/khal/";
|
||||
|
@ -1,33 +0,0 @@
|
||||
diff --git a/tests/cli_test.py b/tests/cli_test.py
|
||||
index 5e354a5..d8fbcd5 100644
|
||||
--- a/tests/cli_test.py
|
||||
+++ b/tests/cli_test.py
|
||||
@@ -493,6 +493,7 @@ def test_import_invalid_choice_and_prefix(runner):
|
||||
assert result.output == '09.04.-09.04. An Event\n'
|
||||
|
||||
|
||||
+@pytest.mark.skip(reason="Mocking breaks in this testcase")
|
||||
def test_import_from_stdin(runner, monkeypatch):
|
||||
ics_data = 'This is some really fake icalendar data'
|
||||
|
||||
diff --git a/tests/ui/test_editor.py b/tests/ui/test_editor.py
|
||||
index 27b7fa5..5978d72 100644
|
||||
--- a/tests/ui/test_editor.py
|
||||
+++ b/tests/ui/test_editor.py
|
||||
@@ -1,5 +1,7 @@
|
||||
import datetime as dt
|
||||
|
||||
+import pytest
|
||||
+
|
||||
import icalendar
|
||||
from khal.ui.editor import RecurrenceEditor, StartEndEditor
|
||||
|
||||
@@ -19,7 +21,7 @@ palette = {
|
||||
'edit': 'blue',
|
||||
}
|
||||
|
||||
-
|
||||
+@pytest.mark.skip(reason="Mocking breaks in this testcase")
|
||||
def test_popup(monkeypatch):
|
||||
"""making sure the popup calendar gets callend with the right inital value
|
||||
|
@ -29,7 +29,7 @@ python3Packages.buildPythonApplication rec {
|
||||
pikepdf
|
||||
img2pdf
|
||||
setuptools
|
||||
dateutil
|
||||
python-dateutil
|
||||
];
|
||||
|
||||
# incompatible with wrapGAppsHook
|
||||
|
@ -5,13 +5,13 @@
|
||||
}:
|
||||
|
||||
let
|
||||
version = "5.0.1";
|
||||
version = "5.0.2";
|
||||
|
||||
subsurfaceSrc = (fetchFromGitHub {
|
||||
owner = "Subsurface";
|
||||
repo = "subsurface";
|
||||
rev = "v${version}";
|
||||
sha256 = "01r836ckvrmgprjf4cqxn2n3w5w4pa2fjrhspjndsspic8nwlrwg";
|
||||
sha256 = "1yay06m8p9qp2ghrg8dxavdq55y09apcgdnb7rihgs3hq86k539n";
|
||||
fetchSubmodules = true;
|
||||
});
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
, buildPythonApplication
|
||||
, click
|
||||
, pyfiglet
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
@ -18,7 +18,7 @@ buildPythonApplication rec {
|
||||
owner = "trehn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil click pyfiglet setuptools ];
|
||||
propagatedBuildInputs = [ python-dateutil click pyfiglet setuptools ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Starts a countdown to or from TIMESPEC";
|
||||
|
@ -2,7 +2,7 @@
|
||||
, lib
|
||||
, buildPythonApplication
|
||||
, fetchFromGitHub
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pandas
|
||||
, requests
|
||||
, lxml
|
||||
@ -36,7 +36,7 @@ buildPythonApplication rec {
|
||||
propagatedBuildInputs = [
|
||||
# from visidata/requirements.txt
|
||||
# packages not (yet) present in nixpkgs are commented
|
||||
dateutil
|
||||
python-dateutil
|
||||
pandas
|
||||
requests
|
||||
lxml
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ lib, fetchurl, buildPythonApplication, dateutil,
|
||||
{ lib, fetchurl, buildPythonApplication, python-dateutil,
|
||||
sqlalchemy, setproctitle, icalendar }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
@ -11,7 +11,7 @@ buildPythonApplication rec {
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
sqlalchemy
|
||||
setproctitle
|
||||
icalendar
|
||||
|
@ -203,6 +203,7 @@ stdenv.mkDerivation {
|
||||
url = "http://www.mozilla.org/en-US/foundation/trademarks/policy/";
|
||||
};
|
||||
platforms = builtins.attrNames mozillaPlatforms;
|
||||
timeout = 86400; # 24 hours (increased from the Hydra default of 10h, c.f. #129115)
|
||||
maintainers = with maintainers; [ taku0 lovesegfault ];
|
||||
};
|
||||
}
|
||||
|
@ -2,13 +2,13 @@
|
||||
|
||||
mkYarnPackage rec {
|
||||
pname = "vieb";
|
||||
version = "5.2.0";
|
||||
version = "5.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Jelmerro";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-wLaOqjDxgjfv4+TJeLE0dkrhfdnNSjiDqtFcHTm8uG4=";
|
||||
sha256 = "sha256-NKWqSnUO8SScEodHYSptRHwVNOa5C4M61ac85d+wYK0=";
|
||||
};
|
||||
|
||||
packageJSON = ./package.json;
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "vieb",
|
||||
"productName": "Vieb",
|
||||
"version": "5.2.0",
|
||||
"version": "5.3.0",
|
||||
"description": "Vim Inspired Electron Browser",
|
||||
"main": "app/index.js",
|
||||
"scripts": {
|
||||
@ -29,18 +29,18 @@
|
||||
"license": "GPL-3.0-or-later",
|
||||
"devDependencies": {
|
||||
"archiver": "5.3.0",
|
||||
"electron": "13.1.2",
|
||||
"electron": "13.1.4",
|
||||
"electron-builder": "22.11.7",
|
||||
"eslint": "7.29.0",
|
||||
"eslint-plugin-compat": "3.9.0",
|
||||
"eslint-plugin-sort-keys-fix": "1.1.1",
|
||||
"jest-environment-jsdom": "27.0.3",
|
||||
"jest": "27.0.4"
|
||||
"jest": "27.0.6",
|
||||
"jest-environment-jsdom": "27.0.6"
|
||||
},
|
||||
"dependencies": {
|
||||
"7zip-bin": "5.1.1",
|
||||
"@cliqz/adblocker-electron": "1.22.1",
|
||||
"@cliqz/adblocker-electron-preload": "1.22.1",
|
||||
"@cliqz/adblocker-electron": "1.22.2",
|
||||
"@cliqz/adblocker-electron-preload": "1.22.2",
|
||||
"is-svg": "4.3.1",
|
||||
"rimraf": "3.0.2"
|
||||
},
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -26,11 +26,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_babel_compat_data___compat_data_7.14.5.tgz";
|
||||
name = "_babel_compat_data___compat_data_7.14.7.tgz";
|
||||
path = fetchurl {
|
||||
name = "_babel_compat_data___compat_data_7.14.5.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.5.tgz";
|
||||
sha1 = "8ef4c18e58e801c5c95d3c1c0f2874a2680fadea";
|
||||
name = "_babel_compat_data___compat_data_7.14.7.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz";
|
||||
sha1 = "7b047d7a3a89a67d2258dc61f604f098f1bc7e08";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -82,11 +82,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.14.5.tgz";
|
||||
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.14.7.tgz";
|
||||
path = fetchurl {
|
||||
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.14.5.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.5.tgz";
|
||||
sha1 = "d5c70e4ad13b402c95156c7a53568f504e2fb7b8";
|
||||
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.14.7.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz";
|
||||
sha1 = "97e56244beb94211fe277bd818e3a329c66f7970";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -178,11 +178,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_babel_parser___parser_7.14.6.tgz";
|
||||
name = "_babel_parser___parser_7.14.7.tgz";
|
||||
path = fetchurl {
|
||||
name = "_babel_parser___parser_7.14.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.6.tgz";
|
||||
sha1 = "d85cc68ca3cac84eae384c06f032921f5227f4b2";
|
||||
name = "_babel_parser___parser_7.14.7.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.7.tgz";
|
||||
sha1 = "6099720c8839ca865a2637e6c85852ead0bdb595";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -298,11 +298,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_babel_traverse___traverse_7.14.5.tgz";
|
||||
name = "_babel_traverse___traverse_7.14.7.tgz";
|
||||
path = fetchurl {
|
||||
name = "_babel_traverse___traverse_7.14.5.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.5.tgz";
|
||||
sha1 = "c111b0f58afab4fea3d3385a406f692748c59870";
|
||||
name = "_babel_traverse___traverse_7.14.7.tgz";
|
||||
url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.7.tgz";
|
||||
sha1 = "64007c9774cfdc3abd23b0780bc18a3ce3631753";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -329,14 +329,6 @@
|
||||
sha1 = "643849d5f08c167eb84a2e7e3f1f9fbc41a3889b";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_cliqz_adblocker_electron_preload___adblocker_electron_preload_1.22.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "_cliqz_adblocker_electron_preload___adblocker_electron_preload_1.22.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@cliqz/adblocker-electron-preload/-/adblocker-electron-preload-1.22.1.tgz";
|
||||
sha1 = "8ce8c18d0ce5f7afa7c1dfe1f4cba30ada86f4af";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_cliqz_adblocker_electron_preload___adblocker_electron_preload_1.22.2.tgz";
|
||||
path = fetchurl {
|
||||
@ -346,11 +338,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_cliqz_adblocker_electron___adblocker_electron_1.22.1.tgz";
|
||||
name = "_cliqz_adblocker_electron___adblocker_electron_1.22.2.tgz";
|
||||
path = fetchurl {
|
||||
name = "_cliqz_adblocker_electron___adblocker_electron_1.22.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@cliqz/adblocker-electron/-/adblocker-electron-1.22.1.tgz";
|
||||
sha1 = "13fe6de4be0c3beb2851634b27ea1223d10ca92b";
|
||||
name = "_cliqz_adblocker_electron___adblocker_electron_1.22.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/@cliqz/adblocker-electron/-/adblocker-electron-1.22.2.tgz";
|
||||
sha1 = "85af3b49f7f653e6fb0d008b6523e3b3ba0dd41e";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -418,91 +410,91 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_console___console_27.0.2.tgz";
|
||||
name = "_jest_console___console_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_console___console_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/console/-/console-27.0.2.tgz";
|
||||
sha1 = "b8eeff8f21ac51d224c851e1729d2630c18631e6";
|
||||
name = "_jest_console___console_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/console/-/console-27.0.6.tgz";
|
||||
sha1 = "3eb72ea80897495c3d73dd97aab7f26770e2260f";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_core___core_27.0.4.tgz";
|
||||
name = "_jest_core___core_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_core___core_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/core/-/core-27.0.4.tgz";
|
||||
sha1 = "679bf9ac07900da2ddbb9667bb1afa8029038f53";
|
||||
name = "_jest_core___core_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/core/-/core-27.0.6.tgz";
|
||||
sha1 = "c5f642727a0b3bf0f37c4b46c675372d0978d4a1";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_environment___environment_27.0.3.tgz";
|
||||
name = "_jest_environment___environment_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_environment___environment_27.0.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/environment/-/environment-27.0.3.tgz";
|
||||
sha1 = "68769b1dfdd213e3456169d64fbe9bd63a5fda92";
|
||||
name = "_jest_environment___environment_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/environment/-/environment-27.0.6.tgz";
|
||||
sha1 = "ee293fe996db01d7d663b8108fa0e1ff436219d2";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_fake_timers___fake_timers_27.0.3.tgz";
|
||||
name = "_jest_fake_timers___fake_timers_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_fake_timers___fake_timers_27.0.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.0.3.tgz";
|
||||
sha1 = "9899ba6304cc636734c74478df502e18136461dd";
|
||||
name = "_jest_fake_timers___fake_timers_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.0.6.tgz";
|
||||
sha1 = "cbad52f3fe6abe30e7acb8cd5fa3466b9588e3df";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_globals___globals_27.0.3.tgz";
|
||||
name = "_jest_globals___globals_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_globals___globals_27.0.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/globals/-/globals-27.0.3.tgz";
|
||||
sha1 = "1cf8933b7791bba0b99305cbf39fd4d2e3fe4060";
|
||||
name = "_jest_globals___globals_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/globals/-/globals-27.0.6.tgz";
|
||||
sha1 = "48e3903f99a4650673d8657334d13c9caf0e8f82";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_reporters___reporters_27.0.4.tgz";
|
||||
name = "_jest_reporters___reporters_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_reporters___reporters_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.0.4.tgz";
|
||||
sha1 = "95609b1be97afb80d55d8aa3d7c3179c15810e65";
|
||||
name = "_jest_reporters___reporters_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.0.6.tgz";
|
||||
sha1 = "91e7f2d98c002ad5df94d5b5167c1eb0b9fd5b00";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_source_map___source_map_27.0.1.tgz";
|
||||
name = "_jest_source_map___source_map_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_source_map___source_map_27.0.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.0.1.tgz";
|
||||
sha1 = "2afbf73ddbaddcb920a8e62d0238a0a9e0a8d3e4";
|
||||
name = "_jest_source_map___source_map_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.0.6.tgz";
|
||||
sha1 = "be9e9b93565d49b0548b86e232092491fb60551f";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_test_result___test_result_27.0.2.tgz";
|
||||
name = "_jest_test_result___test_result_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_test_result___test_result_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.0.2.tgz";
|
||||
sha1 = "0451049e32ceb609b636004ccc27c8fa22263f10";
|
||||
name = "_jest_test_result___test_result_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.0.6.tgz";
|
||||
sha1 = "3fa42015a14e4fdede6acd042ce98c7f36627051";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_test_sequencer___test_sequencer_27.0.4.tgz";
|
||||
name = "_jest_test_sequencer___test_sequencer_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_test_sequencer___test_sequencer_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.0.4.tgz";
|
||||
sha1 = "976493b277594d81e589896f0ed21f198308928a";
|
||||
name = "_jest_test_sequencer___test_sequencer_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.0.6.tgz";
|
||||
sha1 = "80a913ed7a1130545b1cd777ff2735dd3af5d34b";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_transform___transform_27.0.2.tgz";
|
||||
name = "_jest_transform___transform_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_transform___transform_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/transform/-/transform-27.0.2.tgz";
|
||||
sha1 = "b073b7c589e3f4b842102468875def2bb722d6b5";
|
||||
name = "_jest_transform___transform_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/transform/-/transform-27.0.6.tgz";
|
||||
sha1 = "189ad7107413208f7600f4719f81dd2f7278cc95";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_jest_types___types_27.0.2.tgz";
|
||||
name = "_jest_types___types_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "_jest_types___types_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/types/-/types-27.0.2.tgz";
|
||||
sha1 = "e153d6c46bda0f2589f0702b071f9898c7bbd37e";
|
||||
name = "_jest_types___types_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/@jest/types/-/types-27.0.6.tgz";
|
||||
sha1 = "9a992bc517e0c49f035938b8549719c2de40706b";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -642,11 +634,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_types_babel__traverse___babel__traverse_7.11.1.tgz";
|
||||
name = "_types_babel__traverse___babel__traverse_7.14.0.tgz";
|
||||
path = fetchurl {
|
||||
name = "_types_babel__traverse___babel__traverse_7.11.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.11.1.tgz";
|
||||
sha1 = "654f6c4f67568e24c23b367e947098c6206fa639";
|
||||
name = "_types_babel__traverse___babel__traverse_7.14.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.0.tgz";
|
||||
sha1 = "a34277cf8acbd3185ea74129e1f100491eb1da7f";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -666,11 +658,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_types_filesystem___filesystem_0.0.30.tgz";
|
||||
name = "_types_filesystem___filesystem_0.0.31.tgz";
|
||||
path = fetchurl {
|
||||
name = "_types_filesystem___filesystem_0.0.30.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/filesystem/-/filesystem-0.0.30.tgz";
|
||||
sha1 = "a7373a2edf34d13e298baf7ee1101f738b2efb7e";
|
||||
name = "_types_filesystem___filesystem_0.0.31.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/filesystem/-/filesystem-0.0.31.tgz";
|
||||
sha1 = "121a1ded274a2dc731d5e0d90163a920ad6a9ef1";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -754,19 +746,19 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_types_node___node_15.12.4.tgz";
|
||||
name = "_types_node___node_15.12.5.tgz";
|
||||
path = fetchurl {
|
||||
name = "_types_node___node_15.12.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/node/-/node-15.12.4.tgz";
|
||||
sha1 = "e1cf817d70a1e118e81922c4ff6683ce9d422e26";
|
||||
name = "_types_node___node_15.12.5.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/node/-/node-15.12.5.tgz";
|
||||
sha1 = "9a78318a45d75c9523d2396131bd3cca54b2d185";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "_types_node___node_14.17.3.tgz";
|
||||
name = "_types_node___node_14.17.4.tgz";
|
||||
path = fetchurl {
|
||||
name = "_types_node___node_14.17.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/node/-/node-14.17.3.tgz";
|
||||
sha1 = "6d327abaa4be34a74e421ed6409a0ae2f47f4c3d";
|
||||
name = "_types_node___node_14.17.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/@types/node/-/node-14.17.4.tgz";
|
||||
sha1 = "218712242446fc868d0e007af29a4408c7765bc0";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -858,11 +850,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "acorn___acorn_8.4.0.tgz";
|
||||
name = "acorn___acorn_8.4.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "acorn___acorn_8.4.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/acorn/-/acorn-8.4.0.tgz";
|
||||
sha1 = "af53266e698d7cffa416714b503066a82221be60";
|
||||
name = "acorn___acorn_8.4.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/acorn/-/acorn-8.4.1.tgz";
|
||||
sha1 = "56c36251fc7cabc7096adc18f05afe814321a28c";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -1098,11 +1090,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "babel_jest___babel_jest_27.0.2.tgz";
|
||||
name = "babel_jest___babel_jest_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "babel_jest___babel_jest_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.0.2.tgz";
|
||||
sha1 = "7dc18adb01322acce62c2af76ea2c7cd186ade37";
|
||||
name = "babel_jest___babel_jest_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.0.6.tgz";
|
||||
sha1 = "e99c6e0577da2655118e3608b68761a5a69bd0d8";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -1114,11 +1106,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_27.0.1.tgz";
|
||||
name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_27.0.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.0.1.tgz";
|
||||
sha1 = "a6d10e484c93abff0f4e95f437dad26e5736ea11";
|
||||
name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.0.6.tgz";
|
||||
sha1 = "f7c6b3d764af21cb4a2a1ab6870117dbde15b456";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -1130,11 +1122,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "babel_preset_jest___babel_preset_jest_27.0.1.tgz";
|
||||
name = "babel_preset_jest___babel_preset_jest_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "babel_preset_jest___babel_preset_jest_27.0.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.0.1.tgz";
|
||||
sha1 = "7a50c75d16647c23a2cf5158d5bb9eb206b10e20";
|
||||
name = "babel_preset_jest___babel_preset_jest_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.0.6.tgz";
|
||||
sha1 = "909ef08e9f24a4679768be2f60a3df0856843f9d";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -1322,11 +1314,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "caniuse_lite___caniuse_lite_1.0.30001239.tgz";
|
||||
name = "caniuse_lite___caniuse_lite_1.0.30001241.tgz";
|
||||
path = fetchurl {
|
||||
name = "caniuse_lite___caniuse_lite_1.0.30001239.tgz";
|
||||
url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001239.tgz";
|
||||
sha1 = "66e8669985bb2cb84ccb10f68c25ce6dd3e4d2b8";
|
||||
name = "caniuse_lite___caniuse_lite_1.0.30001241.tgz";
|
||||
url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001241.tgz";
|
||||
sha1 = "cd3fae47eb3d7691692b406568d7a3e5b23c7598";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -1554,11 +1546,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "core_js___core_js_3.15.0.tgz";
|
||||
name = "core_js___core_js_3.15.2.tgz";
|
||||
path = fetchurl {
|
||||
name = "core_js___core_js_3.15.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/core-js/-/core-js-3.15.0.tgz";
|
||||
sha1 = "db9554ebce0b6fd90dc9b1f2465c841d2d055044";
|
||||
name = "core_js___core_js_3.15.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/core-js/-/core-js-3.15.2.tgz";
|
||||
sha1 = "740660d2ff55ef34ce664d7e2455119c5bdd3d61";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -1666,11 +1658,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "decimal.js___decimal.js_10.2.1.tgz";
|
||||
name = "decimal.js___decimal.js_10.3.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "decimal.js___decimal.js_10.2.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.1.tgz";
|
||||
sha1 = "238ae7b0f0c793d3e3cea410108b35a2c01426a3";
|
||||
name = "decimal.js___decimal.js_10.3.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz";
|
||||
sha1 = "d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -1754,11 +1746,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "diff_sequences___diff_sequences_27.0.1.tgz";
|
||||
name = "diff_sequences___diff_sequences_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "diff_sequences___diff_sequences_27.0.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.1.tgz";
|
||||
sha1 = "9c9801d52ed5f576ff0a20e3022a13ee6e297e7c";
|
||||
name = "diff_sequences___diff_sequences_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.6.tgz";
|
||||
sha1 = "3305cb2e55a033924054695cc66019fd7f8e5723";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -1858,19 +1850,19 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "electron_to_chromium___electron_to_chromium_1.3.752.tgz";
|
||||
name = "electron_to_chromium___electron_to_chromium_1.3.763.tgz";
|
||||
path = fetchurl {
|
||||
name = "electron_to_chromium___electron_to_chromium_1.3.752.tgz";
|
||||
url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.752.tgz";
|
||||
sha1 = "0728587f1b9b970ec9ffad932496429aef750d09";
|
||||
name = "electron_to_chromium___electron_to_chromium_1.3.763.tgz";
|
||||
url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.763.tgz";
|
||||
sha1 = "93f6f02506d099941f557b9db9ba50b30215bf15";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "electron___electron_13.1.2.tgz";
|
||||
name = "electron___electron_13.1.4.tgz";
|
||||
path = fetchurl {
|
||||
name = "electron___electron_13.1.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/electron/-/electron-13.1.2.tgz";
|
||||
sha1 = "8c9abf9015766c9cbc16f10c99282d00d6ae1b90";
|
||||
name = "electron___electron_13.1.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/electron/-/electron-13.1.4.tgz";
|
||||
sha1 = "6d20d932a0651c3cba9f09a3d08cbaf5b69aa84b";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -2122,11 +2114,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "expect___expect_27.0.2.tgz";
|
||||
name = "expect___expect_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "expect___expect_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/expect/-/expect-27.0.2.tgz";
|
||||
sha1 = "e66ca3a4c9592f1c019fa1d46459a9d2084f3422";
|
||||
name = "expect___expect_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/expect/-/expect-27.0.6.tgz";
|
||||
sha1 = "a4d74fbe27222c718fff68ef49d78e26a8fd4c05";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -2866,131 +2858,131 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_changed_files___jest_changed_files_27.0.2.tgz";
|
||||
name = "jest_changed_files___jest_changed_files_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_changed_files___jest_changed_files_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.0.2.tgz";
|
||||
sha1 = "997253042b4a032950fc5f56abf3c5d1f8560801";
|
||||
name = "jest_changed_files___jest_changed_files_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.0.6.tgz";
|
||||
sha1 = "bed6183fcdea8a285482e3b50a9a7712d49a7a8b";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_circus___jest_circus_27.0.4.tgz";
|
||||
name = "jest_circus___jest_circus_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_circus___jest_circus_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.0.4.tgz";
|
||||
sha1 = "3b261514ee3b3da33def736a6352c98ff56bb6e6";
|
||||
name = "jest_circus___jest_circus_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.0.6.tgz";
|
||||
sha1 = "dd4df17c4697db6a2c232aaad4e9cec666926668";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_cli___jest_cli_27.0.4.tgz";
|
||||
name = "jest_cli___jest_cli_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_cli___jest_cli_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.0.4.tgz";
|
||||
sha1 = "491b12c754c0d7c6873b13a66f26b3a80a852910";
|
||||
name = "jest_cli___jest_cli_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.0.6.tgz";
|
||||
sha1 = "d021e5f4d86d6a212450d4c7b86cb219f1e6864f";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_config___jest_config_27.0.4.tgz";
|
||||
name = "jest_config___jest_config_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_config___jest_config_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-config/-/jest-config-27.0.4.tgz";
|
||||
sha1 = "c4f41378acf40ca77860fb4e213b12109d87b8cf";
|
||||
name = "jest_config___jest_config_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-config/-/jest-config-27.0.6.tgz";
|
||||
sha1 = "119fb10f149ba63d9c50621baa4f1f179500277f";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_diff___jest_diff_27.0.2.tgz";
|
||||
name = "jest_diff___jest_diff_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_diff___jest_diff_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.0.2.tgz";
|
||||
sha1 = "f315b87cee5dc134cf42c2708ab27375cc3f5a7e";
|
||||
name = "jest_diff___jest_diff_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.0.6.tgz";
|
||||
sha1 = "4a7a19ee6f04ad70e0e3388f35829394a44c7b5e";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_docblock___jest_docblock_27.0.1.tgz";
|
||||
name = "jest_docblock___jest_docblock_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_docblock___jest_docblock_27.0.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.0.1.tgz";
|
||||
sha1 = "bd9752819b49fa4fab1a50b73eb58c653b962e8b";
|
||||
name = "jest_docblock___jest_docblock_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.0.6.tgz";
|
||||
sha1 = "cc78266acf7fe693ca462cbbda0ea4e639e4e5f3";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_each___jest_each_27.0.2.tgz";
|
||||
name = "jest_each___jest_each_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_each___jest_each_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-each/-/jest-each-27.0.2.tgz";
|
||||
sha1 = "865ddb4367476ced752167926b656fa0dcecd8c7";
|
||||
name = "jest_each___jest_each_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-each/-/jest-each-27.0.6.tgz";
|
||||
sha1 = "cee117071b04060158dc8d9a66dc50ad40ef453b";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_environment_jsdom___jest_environment_jsdom_27.0.3.tgz";
|
||||
name = "jest_environment_jsdom___jest_environment_jsdom_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_environment_jsdom___jest_environment_jsdom_27.0.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.0.3.tgz";
|
||||
sha1 = "ed73e913ddc03864eb9f934b5cbabf1b63504e2e";
|
||||
name = "jest_environment_jsdom___jest_environment_jsdom_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.0.6.tgz";
|
||||
sha1 = "f66426c4c9950807d0a9f209c590ce544f73291f";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_environment_node___jest_environment_node_27.0.3.tgz";
|
||||
name = "jest_environment_node___jest_environment_node_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_environment_node___jest_environment_node_27.0.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.0.3.tgz";
|
||||
sha1 = "b4acb3679d2552a4215732cab8b0ca7ec4398ee0";
|
||||
name = "jest_environment_node___jest_environment_node_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.0.6.tgz";
|
||||
sha1 = "a6699b7ceb52e8d68138b9808b0c404e505f3e07";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_get_type___jest_get_type_27.0.1.tgz";
|
||||
name = "jest_get_type___jest_get_type_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_get_type___jest_get_type_27.0.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.0.1.tgz";
|
||||
sha1 = "34951e2b08c8801eb28559d7eb732b04bbcf7815";
|
||||
name = "jest_get_type___jest_get_type_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.0.6.tgz";
|
||||
sha1 = "0eb5c7f755854279ce9b68a9f1a4122f69047cfe";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_haste_map___jest_haste_map_27.0.2.tgz";
|
||||
name = "jest_haste_map___jest_haste_map_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_haste_map___jest_haste_map_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.0.2.tgz";
|
||||
sha1 = "3f1819400c671237e48b4d4b76a80a0dbed7577f";
|
||||
name = "jest_haste_map___jest_haste_map_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.0.6.tgz";
|
||||
sha1 = "4683a4e68f6ecaa74231679dca237279562c8dc7";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_jasmine2___jest_jasmine2_27.0.4.tgz";
|
||||
name = "jest_jasmine2___jest_jasmine2_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_jasmine2___jest_jasmine2_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.0.4.tgz";
|
||||
sha1 = "c669519ccf4904a485338555e1e66cad36bb0670";
|
||||
name = "jest_jasmine2___jest_jasmine2_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.0.6.tgz";
|
||||
sha1 = "fd509a9ed3d92bd6edb68a779f4738b100655b37";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_leak_detector___jest_leak_detector_27.0.2.tgz";
|
||||
name = "jest_leak_detector___jest_leak_detector_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_leak_detector___jest_leak_detector_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.0.2.tgz";
|
||||
sha1 = "ce19aa9dbcf7a72a9d58907a970427506f624e69";
|
||||
name = "jest_leak_detector___jest_leak_detector_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.0.6.tgz";
|
||||
sha1 = "545854275f85450d4ef4b8fe305ca2a26450450f";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_matcher_utils___jest_matcher_utils_27.0.2.tgz";
|
||||
name = "jest_matcher_utils___jest_matcher_utils_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_matcher_utils___jest_matcher_utils_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.0.2.tgz";
|
||||
sha1 = "f14c060605a95a466cdc759acc546c6f4cbfc4f0";
|
||||
name = "jest_matcher_utils___jest_matcher_utils_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.0.6.tgz";
|
||||
sha1 = "2a8da1e86c620b39459f4352eaa255f0d43e39a9";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_message_util___jest_message_util_27.0.2.tgz";
|
||||
name = "jest_message_util___jest_message_util_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_message_util___jest_message_util_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.0.2.tgz";
|
||||
sha1 = "181c9b67dff504d8f4ad15cba10d8b80f272048c";
|
||||
name = "jest_message_util___jest_message_util_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.0.6.tgz";
|
||||
sha1 = "158bcdf4785706492d164a39abca6a14da5ab8b5";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_mock___jest_mock_27.0.3.tgz";
|
||||
name = "jest_mock___jest_mock_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_mock___jest_mock_27.0.3.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.0.3.tgz";
|
||||
sha1 = "5591844f9192b3335c0dca38e8e45ed297d4d23d";
|
||||
name = "jest_mock___jest_mock_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.0.6.tgz";
|
||||
sha1 = "0efdd40851398307ba16778728f6d34d583e3467";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -3002,99 +2994,99 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_regex_util___jest_regex_util_27.0.1.tgz";
|
||||
name = "jest_regex_util___jest_regex_util_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_regex_util___jest_regex_util_27.0.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.0.1.tgz";
|
||||
sha1 = "69d4b1bf5b690faa3490113c47486ed85dd45b68";
|
||||
name = "jest_regex_util___jest_regex_util_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.0.6.tgz";
|
||||
sha1 = "02e112082935ae949ce5d13b2675db3d8c87d9c5";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_resolve_dependencies___jest_resolve_dependencies_27.0.4.tgz";
|
||||
name = "jest_resolve_dependencies___jest_resolve_dependencies_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_resolve_dependencies___jest_resolve_dependencies_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.0.4.tgz";
|
||||
sha1 = "a07a242d70d668afd3fcf7f4270755eebb1fe579";
|
||||
name = "jest_resolve_dependencies___jest_resolve_dependencies_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.0.6.tgz";
|
||||
sha1 = "3e619e0ef391c3ecfcf6ef4056207a3d2be3269f";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_resolve___jest_resolve_27.0.4.tgz";
|
||||
name = "jest_resolve___jest_resolve_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_resolve___jest_resolve_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.0.4.tgz";
|
||||
sha1 = "8a27bc3f2f00c8ea28f3bc99bbf6f468300a703d";
|
||||
name = "jest_resolve___jest_resolve_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.0.6.tgz";
|
||||
sha1 = "e90f436dd4f8fbf53f58a91c42344864f8e55bff";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_runner___jest_runner_27.0.4.tgz";
|
||||
name = "jest_runner___jest_runner_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_runner___jest_runner_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.0.4.tgz";
|
||||
sha1 = "2787170a9509b792ae129794f6944d27d5d12a4f";
|
||||
name = "jest_runner___jest_runner_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.0.6.tgz";
|
||||
sha1 = "1325f45055539222bbc7256a6976e993ad2f9520";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_runtime___jest_runtime_27.0.4.tgz";
|
||||
name = "jest_runtime___jest_runtime_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_runtime___jest_runtime_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.0.4.tgz";
|
||||
sha1 = "2e4a6aa77cac32ac612dfe12768387a8aa15c2f0";
|
||||
name = "jest_runtime___jest_runtime_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.0.6.tgz";
|
||||
sha1 = "45877cfcd386afdd4f317def551fc369794c27c9";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_serializer___jest_serializer_27.0.1.tgz";
|
||||
name = "jest_serializer___jest_serializer_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_serializer___jest_serializer_27.0.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.0.1.tgz";
|
||||
sha1 = "2464d04dcc33fb71dc80b7c82e3c5e8a08cb1020";
|
||||
name = "jest_serializer___jest_serializer_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.0.6.tgz";
|
||||
sha1 = "93a6c74e0132b81a2d54623251c46c498bb5bec1";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_snapshot___jest_snapshot_27.0.4.tgz";
|
||||
name = "jest_snapshot___jest_snapshot_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_snapshot___jest_snapshot_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.0.4.tgz";
|
||||
sha1 = "2b96e22ca90382b3e93bd0aae2ce4c78bf51fb5b";
|
||||
name = "jest_snapshot___jest_snapshot_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.0.6.tgz";
|
||||
sha1 = "f4e6b208bd2e92e888344d78f0f650bcff05a4bf";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_util___jest_util_27.0.2.tgz";
|
||||
name = "jest_util___jest_util_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_util___jest_util_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-util/-/jest-util-27.0.2.tgz";
|
||||
sha1 = "fc2c7ace3c75ae561cf1e5fdb643bf685a5be7c7";
|
||||
name = "jest_util___jest_util_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-util/-/jest-util-27.0.6.tgz";
|
||||
sha1 = "e8e04eec159de2f4d5f57f795df9cdc091e50297";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_validate___jest_validate_27.0.2.tgz";
|
||||
name = "jest_validate___jest_validate_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_validate___jest_validate_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.0.2.tgz";
|
||||
sha1 = "7fe2c100089449cd5cbb47a5b0b6cb7cda5beee5";
|
||||
name = "jest_validate___jest_validate_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.0.6.tgz";
|
||||
sha1 = "930a527c7a951927df269f43b2dc23262457e2a6";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_watcher___jest_watcher_27.0.2.tgz";
|
||||
name = "jest_watcher___jest_watcher_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_watcher___jest_watcher_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.0.2.tgz";
|
||||
sha1 = "dab5f9443e2d7f52597186480731a8c6335c5deb";
|
||||
name = "jest_watcher___jest_watcher_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.0.6.tgz";
|
||||
sha1 = "89526f7f9edf1eac4e4be989bcb6dec6b8878d9c";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest_worker___jest_worker_27.0.2.tgz";
|
||||
name = "jest_worker___jest_worker_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest_worker___jest_worker_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.2.tgz";
|
||||
sha1 = "4ebeb56cef48b3e7514552f80d0d80c0129f0b05";
|
||||
name = "jest_worker___jest_worker_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.6.tgz";
|
||||
sha1 = "a5fdb1e14ad34eb228cfe162d9f729cdbfa28aed";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "jest___jest_27.0.4.tgz";
|
||||
name = "jest___jest_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "jest___jest_27.0.4.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest/-/jest-27.0.4.tgz";
|
||||
sha1 = "91d4d564b36bcf93b98dac1ab19f07089e670f53";
|
||||
name = "jest___jest_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/jest/-/jest-27.0.6.tgz";
|
||||
sha1 = "10517b2a628f0409087fbf473db44777d7a04505";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -3786,11 +3778,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "pretty_format___pretty_format_27.0.2.tgz";
|
||||
name = "pretty_format___pretty_format_27.0.6.tgz";
|
||||
path = fetchurl {
|
||||
name = "pretty_format___pretty_format_27.0.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.0.2.tgz";
|
||||
sha1 = "9283ff8c4f581b186b2d4da461617143dca478a4";
|
||||
name = "pretty_format___pretty_format_27.0.6.tgz";
|
||||
url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.0.6.tgz";
|
||||
sha1 = "ab770c47b2c6f893a21aefc57b75da63ef49a11f";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -4682,11 +4674,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "v8_to_istanbul___v8_to_istanbul_7.1.2.tgz";
|
||||
name = "v8_to_istanbul___v8_to_istanbul_8.0.0.tgz";
|
||||
path = fetchurl {
|
||||
name = "v8_to_istanbul___v8_to_istanbul_7.1.2.tgz";
|
||||
url = "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz";
|
||||
sha1 = "30898d1a7fa0c84d225a2c1434fb958f290883c1";
|
||||
name = "v8_to_istanbul___v8_to_istanbul_8.0.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.0.0.tgz";
|
||||
sha1 = "4229f2a99e367f3f018fa1d5c2b8ec684667c69c";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -4754,11 +4746,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "whatwg_url___whatwg_url_8.6.0.tgz";
|
||||
name = "whatwg_url___whatwg_url_8.7.0.tgz";
|
||||
path = fetchurl {
|
||||
name = "whatwg_url___whatwg_url_8.6.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.6.0.tgz";
|
||||
sha1 = "27c0205a4902084b872aecb97cf0f2a7a3011f4c";
|
||||
name = "whatwg_url___whatwg_url_8.7.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz";
|
||||
sha1 = "656a78e510ff8f3937bc0bcbe9f5c0ac35941b77";
|
||||
};
|
||||
}
|
||||
{
|
||||
@ -4810,11 +4802,11 @@
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "ws___ws_7.5.0.tgz";
|
||||
name = "ws___ws_7.5.1.tgz";
|
||||
path = fetchurl {
|
||||
name = "ws___ws_7.5.0.tgz";
|
||||
url = "https://registry.yarnpkg.com/ws/-/ws-7.5.0.tgz";
|
||||
sha1 = "0033bafea031fb9df041b2026fc72a571ca44691";
|
||||
name = "ws___ws_7.5.1.tgz";
|
||||
url = "https://registry.yarnpkg.com/ws/-/ws-7.5.1.tgz";
|
||||
sha1 = "44fc000d87edb1d9c53e51fbc69a0ac1f6871d66";
|
||||
};
|
||||
}
|
||||
{
|
||||
|
@ -2,16 +2,16 @@
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "fluxctl";
|
||||
version = "1.22.2";
|
||||
version = "1.23.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "weaveworks";
|
||||
repo = "flux";
|
||||
rev = version;
|
||||
sha256 = "sha256-qYdVplNHyD31m4IbIeL3x3nauZLl1XquslS3WrtUXBk=";
|
||||
sha256 = "sha256-CJY7XjHJ6suJrjhnG+w5oM1FtVnegcbkCVGjyoBtBag=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-4uSw/9lI/rdDqy78jNC9eHYW/v/sMFb+sQvwYG6GZks=";
|
||||
vendorSha256 = "sha256-aC6E+PpuUqFhZKvQT5AuxpPmHfhjCwHzwFHDzk5wazw=";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
|
@ -2,13 +2,13 @@
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kubeconform";
|
||||
version = "0.4.7";
|
||||
version = "0.4.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "yannh";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-ahVdKMx3u2KnJ30wi9rV8JCVg9wPmbgdrtG8IpWWlCs=";
|
||||
sha256 = "sha256-XD8xGqtE7eaBxPL4Z0Kw4BEqM2fdgww7wl8wJ1U3u0U=";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
@ -9,7 +9,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
sha256 = "b4b1ccf086586d041d7e91e68515d495c550f30e4d179d63863fea9ccdbb78eb";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [ dateutil tornado python-daemon boto3 ];
|
||||
propagatedBuildInputs = with python3.pkgs; [ python-dateutil tornado python-daemon boto3 ];
|
||||
|
||||
# Requires tox, hadoop, and google cloud
|
||||
doCheck = false;
|
||||
|
@ -51,7 +51,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
beautifulsoup4
|
||||
dateutil
|
||||
python-dateutil
|
||||
feedparser
|
||||
html5lib
|
||||
listparser
|
||||
|
@ -46,7 +46,7 @@ python3Packages.buildPythonApplication rec {
|
||||
pynzb
|
||||
pyparsing
|
||||
PyRSS2Gen
|
||||
dateutil
|
||||
python-dateutil
|
||||
pyyaml
|
||||
rebulk
|
||||
requests
|
||||
|
@ -48,7 +48,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
pythonPath = with python3.pkgs; [
|
||||
pygobject3
|
||||
pycairo
|
||||
dateutil
|
||||
python-dateutil
|
||||
praw
|
||||
pillow
|
||||
mistune
|
||||
|
@ -55,7 +55,7 @@ in {
|
||||
sha256 = "0rnshrzw8605x05mpd8ndrx3ri8h6cx713mp8sl4f04f4gcrz8ml";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [twisted dateutil];
|
||||
propagatedBuildInputs = with pythonPackages; [twisted python-dateutil];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Some (mainly XMPP-related) additions to twisted";
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ lib, fetchFromGitHub, buildPythonApplication, fuse
|
||||
, appdirs, colorama, dateutil, requests, requests_toolbelt
|
||||
, appdirs, colorama, python-dateutil, requests, requests_toolbelt
|
||||
, fusepy, sqlalchemy, setuptools }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
@ -15,7 +15,7 @@ buildPythonApplication rec {
|
||||
sha256 = "0a0fr632l24a3jmgla3b1vcm50ayfa9hdbp677ch1chwj5dq4zfp";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ appdirs colorama dateutil fusepy requests
|
||||
propagatedBuildInputs = [ appdirs colorama python-dateutil fusepy requests
|
||||
requests_toolbelt setuptools sqlalchemy ];
|
||||
|
||||
makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${fuse}/lib/libfuse.so" ];
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ lib, fetchFromGitHub, fetchpatch, libnotify, librsvg, killall
|
||||
, gtk3, libappindicator-gtk3, substituteAll, syncthing, wrapGAppsHook
|
||||
, gnome, buildPythonApplication, dateutil, pyinotify, pygobject3
|
||||
, gnome, buildPythonApplication, python-dateutil, pyinotify, pygobject3
|
||||
, bcrypt, gobject-introspection, gsettings-desktop-schemas
|
||||
, pango, gdk-pixbuf, atk }:
|
||||
|
||||
@ -30,7 +30,7 @@ buildPythonApplication rec {
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil pyinotify pygobject3 bcrypt
|
||||
python-dateutil pyinotify pygobject3 bcrypt
|
||||
];
|
||||
|
||||
patches = [
|
||||
|
@ -122,7 +122,7 @@ let
|
||||
|
||||
runtimePackages = with python.pkgs; [
|
||||
dateparser
|
||||
dateutil
|
||||
python-dateutil
|
||||
django
|
||||
django-cors-headers
|
||||
django-crispy-forms
|
||||
|
@ -122,7 +122,7 @@ python3Packages.buildPythonApplication rec {
|
||||
openpaperwork-core
|
||||
pypillowfight
|
||||
pyxdg
|
||||
dateutil
|
||||
python-dateutil
|
||||
setuptools
|
||||
];
|
||||
|
||||
|
@ -34,7 +34,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
dateutil
|
||||
python-dateutil
|
||||
markdown2
|
||||
matplotlib
|
||||
numpy
|
||||
|
@ -36,7 +36,7 @@ python3Packages.buildPythonApplication rec {
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
dateutil
|
||||
python-dateutil
|
||||
pygobject3
|
||||
goocalendar
|
||||
pycairo
|
||||
|
@ -7,16 +7,16 @@ in
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "elan";
|
||||
version = "1.0.2";
|
||||
version = "1.0.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "leanprover";
|
||||
repo = "elan";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-nK4wvxK5Ne1+4kaMts6pIr5FvXBgXJsGdn68gGEZUdk=";
|
||||
sha256 = "sha256-Ns8vSS/PDlfopigW4Nz3fdR9PCMG8gDoL36+/s0Qkeo=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-ptSbpq1ePNWmdBGfKtqFGfkdimDjU0YEo4F8VPtQMt4=";
|
||||
cargoSha256 = "sha256-NDtldiVo4SyE88f6ntKn1WJDFdvwN5Ps4DxQH15iNZE=";
|
||||
|
||||
nativeBuildInputs = [ pkg-config makeWrapper ];
|
||||
|
||||
|
@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
|
||||
let pp = python.pkgs; in ([
|
||||
pp.numpy pp.scipy pp.scikitimage pp.h5py
|
||||
pp.matplotlib pp.ipython pp.networkx pp.nose
|
||||
pp.pandas pp.dateutil pp.protobuf pp.gflags
|
||||
pp.pandas pp.python-dateutil pp.protobuf pp.gflags
|
||||
pp.pyyaml pp.pillow pp.six
|
||||
] ++ lib.optional leveldbSupport pp.leveldb)
|
||||
);
|
||||
|
@ -2,13 +2,13 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "qalculate-gtk";
|
||||
version = "3.18.0";
|
||||
version = "3.19.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "qalculate";
|
||||
repo = "qalculate-gtk";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-hE0di7B6dCnMmMBLgFkb6vPS4hS/7zD6BbviIucrn1I=";
|
||||
sha256 = "1nrx7gp6f1yalbdda1gb97azhbr4xclq2xf08vvbvsk8jfd6fd2v";
|
||||
};
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
44
pkgs/applications/system/qjournalctl/default.nix
Normal file
44
pkgs/applications/system/qjournalctl/default.nix
Normal file
@ -0,0 +1,44 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, qtbase
|
||||
, qmake
|
||||
, pkg-config
|
||||
, libssh
|
||||
, wrapQtAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "qjournalctl";
|
||||
version = "0.6.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pentix";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0j27cmfq29mwrbjfrrwi6m1grcamhbfhk47xzlfsx5wr2q9m6qkz";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace qjournalctl.pro --replace /usr/ $out/
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
qmake
|
||||
pkg-config
|
||||
wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libssh
|
||||
qtbase
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Qt-based graphical user interface for systemd's journalctl command";
|
||||
homepage = "https://github.com/pentix/qjournalctl";
|
||||
license = licenses.gpl3Only;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ dtzWill srgom romildo ];
|
||||
};
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
{ lib, buildPythonApplication, fetchFromGitHub, pycurl, dateutil, configobj, sqlalchemy, sdnotify, flask }:
|
||||
{ lib, buildPythonApplication, fetchFromGitHub, pycurl, python-dateutil, configobj, sqlalchemy, sdnotify, flask }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "pyca";
|
||||
@ -13,7 +13,7 @@ buildPythonApplication rec {
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pycurl
|
||||
dateutil
|
||||
python-dateutil
|
||||
configobj
|
||||
sqlalchemy
|
||||
sdnotify
|
||||
|
@ -39,7 +39,7 @@ python37Packages.buildPythonApplication rec {
|
||||
cairocffi-xcffib
|
||||
setuptools
|
||||
setuptools-scm
|
||||
dateutil
|
||||
python-dateutil
|
||||
dbus-python
|
||||
mpd2
|
||||
psutil
|
||||
|
@ -2,13 +2,13 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "papirus-icon-theme";
|
||||
version = "20210601";
|
||||
version = "20210701";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "PapirusDevelopmentTeam";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-AX51udzIv/DO0n8ba2Gm6Leikep6x4tgUuRUdPX/Cds=";
|
||||
sha256 = "sha256-eqSZBcypwnNX92SGG17MWlnsVzk0jOTdjtEaWMbQsMs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gtk3 ];
|
||||
|
66
pkgs/data/misc/rime-data/default.nix
Normal file
66
pkgs/data/misc/rime-data/default.nix
Normal file
@ -0,0 +1,66 @@
|
||||
{ lib, stdenv, fetchFromGitHub, librime }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "rime-data";
|
||||
version = "0.38.20210628";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "plum";
|
||||
rev = "0b835e347cad9c2d7038cfe82df5b5d1fe1c0327";
|
||||
sha256 = "0mja4wyazxdc6fr7pzij5ah4rzwxv4s12s64vfn5ikx1ias1f8ib";
|
||||
};
|
||||
|
||||
buildInputs = [ librime ];
|
||||
|
||||
buildFlags = [ "all" ];
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
preBuild = import ./fetchSchema.nix fetchFromGitHub;
|
||||
|
||||
postPatch = ''
|
||||
# Disable git operations.
|
||||
sed -i /fetch_or_update_package$/d scripts/install-packages.sh
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Schema data of Rime Input Method Engine";
|
||||
longDescription = ''
|
||||
Rime-data provides schema data for Rime Input Method Engine.
|
||||
'';
|
||||
homepage = "https://rime.im";
|
||||
license = with licenses; [
|
||||
# rime-array
|
||||
# rime-combo-pinyin
|
||||
# rime-double-pinyin
|
||||
# rime-middle-chinese
|
||||
# rime-scj
|
||||
# rime-soutzoe
|
||||
# rime-stenotype
|
||||
# rime-wugniu
|
||||
gpl3Only
|
||||
|
||||
# plum
|
||||
# rime-bopomofo
|
||||
# rime-cangjie
|
||||
# rime-emoji
|
||||
# rime-essay
|
||||
# rime-ipa
|
||||
# rime-jyutping
|
||||
# rime-luna-pinyin
|
||||
# rime-prelude
|
||||
# rime-quick
|
||||
# rime-stroke
|
||||
# rime-terra-pinyin
|
||||
# rime-wubi
|
||||
lgpl3Only
|
||||
|
||||
# rime-pinyin-simp
|
||||
asl20
|
||||
|
||||
# rime-cantonese
|
||||
cc-by-40
|
||||
];
|
||||
maintainers = [ maintainers.pengmeiyu ];
|
||||
};
|
||||
}
|
137
pkgs/data/misc/rime-data/fetchSchema.nix
Normal file
137
pkgs/data/misc/rime-data/fetchSchema.nix
Normal file
@ -0,0 +1,137 @@
|
||||
# Generated using generateFetchSchema.sh
|
||||
fetchFromGitHub:
|
||||
''
|
||||
mkdir -p package/rime
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-array";
|
||||
rev = "8514193da939bc8888ad6a744f5e5921d4baebc7";
|
||||
sha256 = "1fy7pcq7d8m0wzkkhklmv6p370ms9lqc1zpndyy2xjamzrbb9l83";
|
||||
}} package/rime/array
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-bopomofo";
|
||||
rev = "c7618f4f5728e1634417e9d02ea50d82b71956ab";
|
||||
sha256 = "0g77nv0jrwqnbqqna0ib0kqcy6l5zl62kh49ny67d6bjwnwz9186";
|
||||
}} package/rime/bopomofo
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-cangjie";
|
||||
rev = "8dfad9e537f18821b71ba28773315d9c670ae245";
|
||||
sha256 = "029kw9nx6x0acg4f0m8wj1ziqffffhy9yyj51nlx17cnia0qcrby";
|
||||
}} package/rime/cangjie
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-cantonese";
|
||||
rev = "b6f800c74eb639816d56d0d5601aaa96c8963178";
|
||||
sha256 = "1a4ksacbz8l30y3y5c017d0hzwik8knplglb3yswy7l4hsvaanyh";
|
||||
}} package/rime/cantonese
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-combo-pinyin";
|
||||
rev = "a84065a86b272c76215215bd6f03c506b6e7097c";
|
||||
sha256 = "1f0b4kakw0x26gmx7xi4f94nbjlb8lvi9bks4f92jswa045vnd87";
|
||||
}} package/rime/combo-pinyin
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-double-pinyin";
|
||||
rev = "69bf85d4dfe8bac139c36abbd68d530b8b6622ea";
|
||||
sha256 = "093wif5avvvw45fqbwj5wkbxrychy4pagl4mwsmbrayc8jkp69ak";
|
||||
}} package/rime/double-pinyin
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-emoji";
|
||||
rev = "4c8c51f4a3bc7298c99376eda9bbd86070fc4fa1";
|
||||
sha256 = "0175jqh210fncafqckr9zzaw55qpswmqjrykwms1apmc68l43122";
|
||||
}} package/rime/emoji
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-essay";
|
||||
rev = "9db2e77305e75798baf3ec8dcf1f82785b5e1be9";
|
||||
sha256 = "03ypkkaadd5qmyg26n24a66cll90xvcimgbmiyv4d33jradiqg22";
|
||||
}} package/rime/essay
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-ipa";
|
||||
rev = "22b71710e029bcb412e9197192a638ab11bc2abf";
|
||||
sha256 = "0zdk4f9qkfj3q5hmjnairj1lv6f6y27mic12k886n6sxywwbwr2k";
|
||||
}} package/rime/ipa
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-jyutping";
|
||||
rev = "1e24baa6998815c716c581effe8ec65ee87c4e8c";
|
||||
sha256 = "0s2rckpwlrm3n7w1csnqyi5p9mkpp3z87s7mrm2vc9sv06rpv7zl";
|
||||
}} package/rime/jyutping
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-luna-pinyin";
|
||||
rev = "623adb022b094d540218b287c2e601509eee3347";
|
||||
sha256 = "06pcwp09l5wkqv7792gbsl31xnlb3gr9q6bgbp94vvq6m2ycahqz";
|
||||
}} package/rime/luna-pinyin
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-middle-chinese";
|
||||
rev = "9fad7a7c0c26167d5e6e85db8df48a15c7f7d4f0";
|
||||
sha256 = "0a0bqrlzg0k692xblqnh1rh1fwwqqb205xwxlihgji85n8ibcgph";
|
||||
}} package/rime/middle-chinese
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-pinyin-simp";
|
||||
rev = "b0e84cda02c613ebdedc127a26131b3800f45a8e";
|
||||
sha256 = "05v804qr3a9xvjzp9yid7231fi2l2yrl47ybbvql61z9k36ab094";
|
||||
}} package/rime/pinyin-simp
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-prelude";
|
||||
rev = "3de303ffaa731dba07b0462ce59f4767e1219ad2";
|
||||
sha256 = "0g7a0bla58rh1v3md59k6adk185pilb4z8i2i0pqdl4nwqp40n2p";
|
||||
}} package/rime/prelude
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-quick";
|
||||
rev = "3fe5911ba608cb2df1b6301b76ad1573bd482a76";
|
||||
sha256 = "08bh87ym5qvw55lyw20l3m7jd4c2z5rvil8h5q8790r7z6j6ijy9";
|
||||
}} package/rime/quick
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-scj";
|
||||
rev = "cab5a0858765eff0553dd685a2d61d5536e9149c";
|
||||
sha256 = "0ard2bjp4896a8dimmcwyjwgmp9kl4rz92yc92jnd3y4rgwl6fvk";
|
||||
}} package/rime/scj
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-soutzoe";
|
||||
rev = "beeaeca72d8e17dfd1e9af58680439e9012987dc";
|
||||
sha256 = "0jyqx0q9s0qxn168l5n8zav8jcl2g5ppr7pa8jm1vwrllf20slcc";
|
||||
}} package/rime/soutzoe
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-stenotype";
|
||||
rev = "f3e9189d5ce33c55d3936cc58e39d0c88b3f0c88";
|
||||
sha256 = "0dl6px7lrh3xa87knjzwzdcwjj1k1dg4l72q7lb48an4s9f1cy5d";
|
||||
}} package/rime/stenotype
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-stroke";
|
||||
rev = "ea8576d1accd6fda339e96b415caadb56e2a07d1";
|
||||
sha256 = "07h6nq9867hjrd2v3h1pnr940sdrw4mqrzj43siz1rzjxz3s904r";
|
||||
}} package/rime/stroke
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-terra-pinyin";
|
||||
rev = "ce7b9249612f575d2f43d51fcacd31d1b4e0ef1b";
|
||||
sha256 = "0vm303f4lrdmdmif5klrp6w29vn9z2vzw33cw0y83pcnz39wiads";
|
||||
}} package/rime/terra-pinyin
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-wubi";
|
||||
rev = "f1876f08f1d4a9696395be0070c0e8e4353c44cb";
|
||||
sha256 = "1d9y9rqssacria9d0hla96czsqv2wkfm6z926m1x269ryv96zxvk";
|
||||
}} package/rime/wubi
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-wugniu";
|
||||
rev = "abd1ee98efbf170258fcf43875c21a4259e00b61";
|
||||
sha256 = "0qn54d3cclny106ixdw08r5n6wn52ffs1hgrma3k0j4pv0kr9nlq";
|
||||
}} package/rime/wugniu
|
||||
''
|
43
pkgs/data/misc/rime-data/generateFetchSchema.sh
Executable file
43
pkgs/data/misc/rime-data/generateFetchSchema.sh
Executable file
@ -0,0 +1,43 @@
|
||||
#!/usr/bin/env nix-shell
|
||||
#!nix-shell -i bash -p nix-prefetch-git -p jq
|
||||
|
||||
imlist=(
|
||||
array
|
||||
bopomofo
|
||||
cangjie
|
||||
cantonese
|
||||
combo-pinyin
|
||||
double-pinyin
|
||||
emoji
|
||||
essay
|
||||
ipa
|
||||
jyutping
|
||||
luna-pinyin
|
||||
middle-chinese
|
||||
pinyin-simp
|
||||
prelude
|
||||
quick
|
||||
scj
|
||||
soutzoe
|
||||
stenotype
|
||||
stroke
|
||||
terra-pinyin
|
||||
wubi
|
||||
wugniu
|
||||
)
|
||||
|
||||
echo "# Generated using generateFetchSchema.sh"
|
||||
echo "fetchFromGitHub:"
|
||||
echo \'\'
|
||||
echo "mkdir -p package/rime"
|
||||
for im in ${imlist[@]}; do
|
||||
tempFile=$(mktemp)
|
||||
echo "ln -sv \${fetchFromGitHub {"
|
||||
echo " owner = \"rime\";"
|
||||
echo " repo = \"rime-$im\";"
|
||||
nix-prefetch-git --quiet https://github.com/rime/rime-$im \
|
||||
| jq '{ rev: .rev, sha256: .sha256 }' \
|
||||
| jq -r 'to_entries | map(" \(.key) = \"\(.value)\";") | .[]'
|
||||
echo "}} package/rime/$im"
|
||||
done
|
||||
echo \'\'
|
@ -4,12 +4,12 @@
|
||||
, parsec, process, regex-compat, text, time }:
|
||||
|
||||
let
|
||||
version = "2.1.4";
|
||||
version = "2.1.9";
|
||||
src = fetchFromGitHub {
|
||||
owner = "koka-lang";
|
||||
repo = "koka";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-MPMA8ZErEKv1SrkliLsy35k88GrdsPqIK6yokQreIjE=";
|
||||
sha256 = "0xny4x1a2lzwgmng60bni7rxfjx5ns70qbfp703qwms54clvj5wy";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
kklib = stdenv.mkDerivation {
|
||||
|
@ -17,6 +17,9 @@ let
|
||||
mv clang-* clang
|
||||
sourceRoot=$PWD/clang
|
||||
unpackFile ${clang-tools-extra_src}
|
||||
mv clang-tools-extra-* $sourceRoot/tools/extra
|
||||
substituteInPlace $sourceRoot/tools/extra/clangd/quality/CompletionModel.cmake \
|
||||
--replace ' ''${CMAKE_SOURCE_DIR}/../clang-tools-extra' ' ''${CMAKE_SOURCE_DIR}/tools/extra'
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake python3 ]
|
||||
|
@ -3,6 +3,6 @@
|
||||
# How to obtain `sha256`:
|
||||
# nix-prefetch-url --unpack https://github.com/erlang/otp/archive/OTP-${version}.tar.gz
|
||||
mkDerivation {
|
||||
version = "24.0.2";
|
||||
sha256 = "gAiQc+AVj5xjwAnn9mF4xprjZOft1JvfEFVJMG5isxg=";
|
||||
version = "24.0.3";
|
||||
sha256 = "KVMISrWNBkk+w37gB4M5TQkgm4odZ+GqLvKN4stzOUI=";
|
||||
}
|
||||
|
@ -3,13 +3,13 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libqalculate";
|
||||
version = "3.18.0";
|
||||
version = "3.19.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "qalculate";
|
||||
repo = "libqalculate";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-cQNcKa/mEdeH1MaLhj203MOphfYDTQ5pn/GzUmSZGcE=";
|
||||
sha256 = "1w44407wb552q21dz4m2nwwdi8b9hzjb2w1l3ffsikzqckc7wbyj";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" "doc" ];
|
||||
|
@ -19,11 +19,15 @@
|
||||
, x11Support? !stdenv.isDarwin, libXft
|
||||
}:
|
||||
|
||||
let
|
||||
withDocs = stdenv.buildPlatform == stdenv.hostPlatform;
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pango";
|
||||
version = "1.48.4";
|
||||
|
||||
outputs = [ "bin" "out" "dev" "devdoc" ];
|
||||
outputs = [ "bin" "out" "dev" ]
|
||||
++ lib.optionals withDocs [ "devdoc" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
@ -58,9 +62,11 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
"-Dgtk_doc=true"
|
||||
"-Dgtk_doc=${lib.boolToString withDocs}"
|
||||
] ++ lib.optionals (!x11Support) [
|
||||
"-Dxft=disabled" # only works with x11
|
||||
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
||||
"-Dintrospection=disabled"
|
||||
];
|
||||
|
||||
# Fontconfig error: Cannot load default config file
|
||||
@ -70,7 +76,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = false; # test-font: FAIL
|
||||
|
||||
postInstall = ''
|
||||
postInstall = lib.optionalString withDocs ''
|
||||
# So that devhelp can find this.
|
||||
# https://gitlab.gnome.org/GNOME/pango/merge_requests/293/diffs#note_1058448
|
||||
mkdir -p "$devdoc/share/devhelp"
|
||||
|
@ -2,11 +2,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "blas";
|
||||
version = "3.8.0";
|
||||
version = "3.10.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.netlib.org/blas/${pname}-${version}.tgz";
|
||||
sha256 = "1s24iry5197pskml4iygasw196bdhplj0jmbsb9jhabcjqj2mpsm";
|
||||
sha256 = "sha256-LjYNmcm9yEB6YYiMQKqFP7QhlCDruCZNtIbLiGBGirM=";
|
||||
};
|
||||
|
||||
buildInputs = [ gfortran ];
|
||||
@ -20,17 +20,17 @@ stdenv.mkDerivation rec {
|
||||
echo >>make.inc "NOOPT = -O0 -fPIC"
|
||||
echo >>make.inc "LOADER = gfortran"
|
||||
echo >>make.inc "LOADOPTS ="
|
||||
echo >>make.inc "ARCH = gfortran"
|
||||
echo >>make.inc "ARCHFLAGS = -shared -o"
|
||||
echo >>make.inc "AR = gfortran"
|
||||
echo >>make.inc "ARFLAGS = -shared -o"
|
||||
echo >>make.inc "RANLIB = echo"
|
||||
echo >>make.inc "BLASLIB = libblas.so.${version}"
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
make
|
||||
echo >>make.inc "ARCHFLAGS = "
|
||||
echo >>make.inc "ARFLAGS = "
|
||||
echo >>make.inc "BLASLIB = libblas.a"
|
||||
echo >>make.inc "ARCH = ar rcs"
|
||||
echo >>make.inc "AR = ar rcs"
|
||||
echo >>make.inc "RANLIB = ranlib"
|
||||
make
|
||||
'';
|
||||
|
@ -3,7 +3,7 @@
|
||||
, Babel
|
||||
, blinker
|
||||
, buildPythonPackage
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, docutils
|
||||
, doit
|
||||
, fetchPypi
|
||||
@ -53,7 +53,7 @@ buildPythonPackage rec {
|
||||
aiohttp
|
||||
Babel
|
||||
blinker
|
||||
dateutil
|
||||
python-dateutil
|
||||
docutils
|
||||
doit
|
||||
ghp-import
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, requests, pyjwt, dateutil }:
|
||||
, requests, pyjwt, python-dateutil }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "adal";
|
||||
@ -10,7 +10,7 @@ buildPythonPackage rec {
|
||||
sha256 = "d74f45b81317454d96e982fd1c50e6fb5c99ac2223728aea8764433a39f566f1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests pyjwt dateutil ];
|
||||
propagatedBuildInputs = [ requests pyjwt python-dateutil ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library to make it easy for python application to authenticate to Azure Active Directory (AAD) in order to access AAD protected web resources";
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aiomusiccast";
|
||||
version = "0.8.1";
|
||||
version = "0.8.2";
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
||||
owner = "vigonotion";
|
||||
repo = "aiomusiccast";
|
||||
rev = version;
|
||||
sha256 = "sha256-1k0ELXA8TgAyRYdzSFXp/BsPesC1WCiC4PqHfcPk0u8=";
|
||||
sha256 = "sha256-XmDE704c9KJst8hrvdyQdS52Sd6RnprQZjBCIWAaiho=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, pytest, pytestcov, mock, coverage, setuptools
|
||||
, Mako, sqlalchemy, python-editor, dateutil
|
||||
, Mako, sqlalchemy, python-editor, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -13,7 +13,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
buildInputs = [ pytest pytestcov mock coverage ];
|
||||
propagatedBuildInputs = [ Mako sqlalchemy python-editor dateutil setuptools ];
|
||||
propagatedBuildInputs = [ Mako sqlalchemy python-editor python-dateutil setuptools ];
|
||||
|
||||
# no traditional test suite
|
||||
doCheck = false;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, mock
|
||||
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
|
@ -5,7 +5,7 @@
|
||||
, azure-common
|
||||
, cryptography
|
||||
, futures ? null
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, requests
|
||||
, isPy3k
|
||||
}:
|
||||
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
||||
sha256 = "0pyasfxkin6j8j00qmky7d9cvpxgis4fi9bscgclj6yrpvf14qpv";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ azure-common cryptography dateutil requests ]
|
||||
propagatedBuildInputs = [ azure-common cryptography python-dateutil requests ]
|
||||
++ pkgs.lib.optionals (!isPy3k) [ futures ];
|
||||
|
||||
postPatch = ''
|
||||
|
@ -5,7 +5,7 @@
|
||||
, beautifulsoup4
|
||||
, bottle
|
||||
, chardet
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, google-api-python-client
|
||||
, google-auth-oauthlib
|
||||
, lxml
|
||||
@ -34,7 +34,7 @@ buildPythonPackage rec {
|
||||
beautifulsoup4
|
||||
bottle
|
||||
chardet
|
||||
dateutil
|
||||
python-dateutil
|
||||
google-api-python-client
|
||||
google-auth-oauthlib
|
||||
lxml
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, dateutil, requests }:
|
||||
, python-dateutil, requests }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bitcoin-price-api";
|
||||
@ -10,7 +10,7 @@ buildPythonPackage rec {
|
||||
sha256 = "bc68076f9632aaa9a8009d916d67a709c1e045dd904cfc7a3e8be33960d32029";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil requests ];
|
||||
propagatedBuildInputs = [ python-dateutil requests ];
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, jmespath
|
||||
, docutils
|
||||
, ordereddict
|
||||
@ -21,7 +21,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
jmespath
|
||||
docutils
|
||||
ordereddict
|
||||
|
@ -5,13 +5,13 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bravado-core";
|
||||
version = "5.16.1";
|
||||
version = "5.17.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Yelp";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0r9gk5vkjbc407fjydms3ik3hnzajq54znyz58d8rm6pvqcvjjpl";
|
||||
sha256 = "sha256-okQA4YJq0lyVJuDzD8mMRlOS/K3gf1qRUpw/5M0LlZE=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder, setuptools
|
||||
, twiggy, requests, offtrac, bugzilla, taskw, dateutil, pytz, keyring, six
|
||||
, twiggy, requests, offtrac, bugzilla, taskw, python-dateutil, pytz, keyring, six
|
||||
, jinja2, pycurl, dogpile_cache, lockfile, click, pyxdg, future, jira }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -14,7 +14,7 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [
|
||||
setuptools
|
||||
twiggy requests offtrac bugzilla taskw dateutil pytz keyring six
|
||||
twiggy requests offtrac bugzilla taskw python-dateutil pytz keyring six
|
||||
jinja2 pycurl dogpile_cache lockfile click pyxdg future jira
|
||||
];
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ stdenv, lib, buildPythonPackage, fetchPypi, makeWrapper, isPy3k,
|
||||
python, twisted, jinja2, zope_interface, sqlalchemy,
|
||||
sqlalchemy_migrate, dateutil, txaio, autobahn, pyjwt, pyyaml, unidiff, treq,
|
||||
sqlalchemy_migrate, python-dateutil, txaio, autobahn, pyjwt, pyyaml, unidiff, treq,
|
||||
txrequests, pypugjs, boto3, moto, mock, python-lz4, setuptoolsTrial,
|
||||
isort, pylint, flake8, buildbot-worker, buildbot-pkg, buildbot-plugins,
|
||||
parameterized, git, openssh, glibcLocales, ldap3, nixosTests }:
|
||||
@ -39,7 +39,7 @@ let
|
||||
zope_interface
|
||||
sqlalchemy
|
||||
sqlalchemy_migrate
|
||||
dateutil
|
||||
python-dateutil
|
||||
txaio
|
||||
autobahn
|
||||
pyjwt
|
||||
|
@ -4,7 +4,7 @@
|
||||
, fetchFromGitHub
|
||||
, ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface
|
||||
, dialog, gnureadline
|
||||
, pytest_xdist, pytestCheckHook, dateutil
|
||||
, pytest_xdist, pytestCheckHook, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -40,7 +40,7 @@ buildPythonPackage rec {
|
||||
buildInputs = [ dialog gnureadline ];
|
||||
|
||||
checkInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
pytestCheckHook
|
||||
pytest_xdist
|
||||
];
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, sigtools
|
||||
, six
|
||||
, attrs
|
||||
@ -29,7 +29,7 @@ buildPythonPackage rec {
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
dateutil
|
||||
python-dateutil
|
||||
pygments
|
||||
repeated_test
|
||||
unittest2
|
||||
|
@ -5,7 +5,7 @@
|
||||
, attrs
|
||||
, colorlog
|
||||
, csvw
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, tabulate
|
||||
, mock
|
||||
, postgresql
|
||||
@ -30,7 +30,7 @@ buildPythonPackage rec {
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
tabulate
|
||||
colorlog
|
||||
attrs
|
||||
|
@ -3,7 +3,7 @@
|
||||
, fetchPypi
|
||||
, certifi
|
||||
, six
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, urllib3
|
||||
}:
|
||||
|
||||
@ -22,7 +22,7 @@ buildPythonPackage rec {
|
||||
propagatedBuildInputs = [
|
||||
certifi
|
||||
six
|
||||
dateutil
|
||||
python-dateutil
|
||||
urllib3
|
||||
];
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
, pythonOlder
|
||||
, attrs
|
||||
, isodate
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, rfc3986
|
||||
, uritemplate
|
||||
, mock
|
||||
@ -31,7 +31,7 @@ buildPythonPackage rec {
|
||||
propagatedBuildInputs = [
|
||||
attrs
|
||||
isodate
|
||||
dateutil
|
||||
python-dateutil
|
||||
rfc3986
|
||||
uritemplate
|
||||
];
|
||||
|
@ -5,7 +5,7 @@
|
||||
, mock
|
||||
, numpy
|
||||
, multipledispatch
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
}:
|
||||
|
||||
let
|
||||
@ -29,7 +29,7 @@ in buildPythonPackage rec {
|
||||
};
|
||||
|
||||
checkInputs = [ pytest mock ];
|
||||
propagatedBuildInputs = [ numpy multipledispatch dateutil ];
|
||||
propagatedBuildInputs = [ numpy multipledispatch python-dateutil ];
|
||||
|
||||
# Disable several tests
|
||||
# https://github.com/blaze/datashape/issues/232
|
||||
|
@ -4,7 +4,7 @@
|
||||
, mock
|
||||
, parameterized
|
||||
, pytestCheckHook
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pytz
|
||||
, regex
|
||||
, tzlocal
|
||||
@ -39,7 +39,7 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# install_requires
|
||||
dateutil pytz regex tzlocal
|
||||
python-dateutil pytz regex tzlocal
|
||||
# extra_requires
|
||||
convertdate umalqurra jdatetime ruamel_yaml
|
||||
];
|
||||
|
@ -2,7 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, isPy3k
|
||||
, fetchFromGitHub
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pytz
|
||||
, regex
|
||||
, tzlocal
|
||||
@ -29,7 +29,7 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# install_requires
|
||||
dateutil pytz regex tzlocal
|
||||
python-dateutil pytz regex tzlocal
|
||||
# extra_requires
|
||||
hijri-converter convertdate
|
||||
];
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, setuptools, setuptools-scm, django, dateutil, whoosh, pysolr
|
||||
, setuptools, setuptools-scm, django, python-dateutil, whoosh, pysolr
|
||||
, coverage, mock, nose, geopy, requests }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -11,7 +11,7 @@ buildPythonPackage rec {
|
||||
sha256 = "d490f920afa85471dd1fa5000bc8eff4b704daacbe09aee1a64e75cbc426f3be";
|
||||
};
|
||||
|
||||
checkInputs = [ pysolr whoosh dateutil geopy coverage nose mock coverage requests ];
|
||||
checkInputs = [ pysolr whoosh python-dateutil geopy coverage nose mock coverage requests ];
|
||||
propagatedBuildInputs = [ django setuptools ];
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
, django
|
||||
, pygments
|
||||
, simplejson
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, requests
|
||||
, setuptools-scm
|
||||
, sqlparse
|
||||
@ -56,7 +56,7 @@ buildPythonPackage rec {
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
buildInputs = [ mock ];
|
||||
propagatedBuildInputs = [
|
||||
django pygments simplejson dateutil requests
|
||||
django pygments simplejson python-dateutil requests
|
||||
sqlparse jinja2 autopep8 pytz pillow gprof2dot
|
||||
];
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
, fetchPypi
|
||||
, python
|
||||
, six
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, ipaddress
|
||||
, mock
|
||||
}:
|
||||
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
||||
sha256 = "f5bd18deb22ad8cb4402513c025877bc6b50de58902d686b6b21ba8981dce260";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six dateutil ipaddress mock ];
|
||||
propagatedBuildInputs = [ six python-dateutil ipaddress mock ];
|
||||
|
||||
# fake-factory is depreciated and single test will always fail
|
||||
doCheck = false;
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, text-unidecode
|
||||
, freezegun
|
||||
, pytestCheckHook
|
||||
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
text-unidecode
|
||||
];
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, dateutil, lxml }:
|
||||
{ lib, buildPythonPackage, fetchPypi, python-dateutil, lxml }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "feedgen";
|
||||
@ -9,7 +9,7 @@ buildPythonPackage rec {
|
||||
sha256 = "0jl0b87l7v6c0f1nx6k81skjhdj5i11kmchdjls00mynpvdip0cf";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil lxml ];
|
||||
propagatedBuildInputs = [ python-dateutil lxml ];
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
@ -2,7 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, coverage
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, freezegun
|
||||
, mock
|
||||
, requests-mock
|
||||
@ -15,7 +15,7 @@ buildPythonPackage rec {
|
||||
version = "0.3.1";
|
||||
|
||||
checkInputs = [ coverage freezegun mock requests-mock sphinx ];
|
||||
propagatedBuildInputs = [ dateutil requests_oauthlib ];
|
||||
propagatedBuildInputs = [ python-dateutil requests_oauthlib ];
|
||||
|
||||
# The source package on PyPi is missing files required for unit testing.
|
||||
# https://github.com/orcasgit/python-fitbit/issues/148
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, dateutil, flask, pyjwt, werkzeug, pytest }:
|
||||
{ lib, buildPythonPackage, fetchPypi, python-dateutil, flask, pyjwt, werkzeug, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Flask-JWT-Extended";
|
||||
@ -9,7 +9,7 @@ buildPythonPackage rec {
|
||||
sha256 = "76461f2dbdf502261c69ddecd858eaf4164fbcfbf05aa456f3927fc2ab0315de";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil flask pyjwt werkzeug ];
|
||||
propagatedBuildInputs = [ python-dateutil flask pyjwt werkzeug ];
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
|
@ -2,7 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, six
|
||||
, mock
|
||||
, nose
|
||||
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
||||
sha256 = "e2062f2c7f95cc276a834c22f1a17179467176b624cc6f936e8bc3be5535ad1b";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil six ];
|
||||
propagatedBuildInputs = [ python-dateutil six ];
|
||||
checkInputs = [ mock nose pytest ];
|
||||
|
||||
meta = with lib; {
|
||||
|
@ -2,7 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
@ -16,7 +16,7 @@ buildPythonPackage rec {
|
||||
sha256 = "177f9dd59861d871e27a484c3332f35a6e3f5d14626f2bf91be37891f18927f3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil ];
|
||||
propagatedBuildInputs = [ python-dateutil ];
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
|
@ -6,7 +6,7 @@
|
||||
, greenlet
|
||||
, httplib2
|
||||
, six
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, fusepy
|
||||
, google-api-python-client
|
||||
}:
|
||||
@ -22,7 +22,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
buildInputs = [ gipc greenlet httplib2 six ];
|
||||
propagatedBuildInputs = [ dateutil fusepy google-api-python-client ];
|
||||
propagatedBuildInputs = [ python-dateutil fusepy google-api-python-client ];
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace gdrivefs/resources/requirements.txt \
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -13,7 +13,7 @@ buildPythonPackage rec {
|
||||
hash = "sha256-wiqc4Qw3dT4miNFk12WnANrkuNefptsKLDEyuniBiU8=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil ];
|
||||
propagatedBuildInputs = [ python-dateutil ];
|
||||
|
||||
# Does not include any unit tests
|
||||
doCheck = false;
|
||||
|
@ -9,7 +9,7 @@
|
||||
, mock
|
||||
, requests
|
||||
, uritemplate
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, jwcrypto
|
||||
, pyopenssl
|
||||
, ndg-httpsclient
|
||||
@ -28,7 +28,7 @@ buildPythonPackage rec {
|
||||
checkInputs = [ betamax pytest betamax-matchers ]
|
||||
++ lib.optional (pythonOlder "3") unittest2
|
||||
++ lib.optional (pythonOlder "3.3") mock;
|
||||
propagatedBuildInputs = [ requests uritemplate dateutil jwcrypto pyopenssl ndg-httpsclient pyasn1 ];
|
||||
propagatedBuildInputs = [ requests uritemplate python-dateutil jwcrypto pyopenssl ndg-httpsclient pyasn1 ];
|
||||
|
||||
postPatch = ''
|
||||
sed -i -e 's/unittest2 ==0.5.1/unittest2>=0.5.1/' setup.py
|
||||
|
@ -4,7 +4,7 @@
|
||||
, isPy3k
|
||||
, pytz
|
||||
, gflags
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, mox
|
||||
, python
|
||||
}:
|
||||
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
||||
sed -i '/ez_setup/d' setup.py
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ pytz gflags dateutil mox ];
|
||||
propagatedBuildInputs = [ pytz gflags python-dateutil mox ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.executable} setup.py google_test
|
||||
|
@ -2,7 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestrunner
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, babelfish
|
||||
, rebulk
|
||||
}:
|
||||
@ -20,7 +20,7 @@ buildPythonPackage rec {
|
||||
doCheck = false;
|
||||
buildInputs = [ pytestrunner ];
|
||||
propagatedBuildInputs = [
|
||||
dateutil babelfish rebulk
|
||||
python-dateutil babelfish rebulk
|
||||
];
|
||||
|
||||
meta = {
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, convertdate
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, fetchPypi
|
||||
, hijri-converter
|
||||
, korean-lunar-calendar
|
||||
@ -22,7 +22,7 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [
|
||||
convertdate
|
||||
dateutil
|
||||
python-dateutil
|
||||
hijri-converter
|
||||
korean-lunar-calendar
|
||||
six
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ buildPythonPackage, fetchPypi
|
||||
, requests, six, dateutil }:
|
||||
, requests, six, python-dateutil }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hypchat";
|
||||
@ -10,5 +10,5 @@ buildPythonPackage rec {
|
||||
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests six dateutil ];
|
||||
propagatedBuildInputs = [ requests six python-dateutil ];
|
||||
}
|
||||
|
@ -38,9 +38,17 @@ buildPythonPackage rec {
|
||||
|
||||
# Various tests try to access credential files which are not included with the source distribution
|
||||
disabledTests = [
|
||||
"test_iam" "test_cwd" "test_configure_service" "test_get_authenticator"
|
||||
"test_read_external_sources_2" "test_files_duplicate_parts" "test_files_list"
|
||||
"test_files_dict" "test_retry_config_external" "test_gzip_compression_external"
|
||||
"test_configure_service"
|
||||
"test_cp4d_authenticator"
|
||||
"test_cwd"
|
||||
"test_files_dict"
|
||||
"test_files_duplicate_parts"
|
||||
"test_files_list"
|
||||
"test_get_authenticator"
|
||||
"test_gzip_compression_external"
|
||||
"test_iam"
|
||||
"test_read_external_sources_2"
|
||||
"test_retry_config_external"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
@ -14,13 +14,13 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ibm-watson";
|
||||
version = "5.2.0";
|
||||
version = "5.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "watson-developer-cloud";
|
||||
repo = "python-sdk";
|
||||
rev = "v${version}";
|
||||
sha256 = "1abink5mv9nw506nwm9hlvnr1lq6dkxxj2j12iwphcyd7xs63n2s";
|
||||
sha256 = "sha256-0F4BZf0D0dqGm0OkJaSgmH5RxEA8KCzOlbnhIQVsgzQ=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
@ -40,8 +40,7 @@ buildPythonPackage rec {
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace websocket-client==0.48.0 websocket-client>=0.48.0 \
|
||||
--replace ibm_cloud_sdk_core==3.3.6 ibm_cloud_sdk_core>=3.3.6
|
||||
--replace websocket-client==1.1.0 websocket-client>=1.1.0
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
@ -2,7 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pytz
|
||||
}:
|
||||
|
||||
@ -16,7 +16,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
buildInputs = [ setuptools ];
|
||||
propagatedBuildInputs = [ dateutil pytz ];
|
||||
propagatedBuildInputs = [ python-dateutil pytz ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A parser/generator of iCalendar files";
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, mock
|
||||
@ -27,7 +27,7 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
dateutil
|
||||
python-dateutil
|
||||
pytz
|
||||
six
|
||||
msgpack
|
||||
|
@ -2,7 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, nose
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, ipython_genutils
|
||||
, decorator
|
||||
, pyzmq
|
||||
@ -25,7 +25,7 @@ buildPythonPackage rec {
|
||||
|
||||
buildInputs = [ nose ];
|
||||
|
||||
propagatedBuildInputs = [ dateutil ipython_genutils decorator pyzmq ipython jupyter_client ipykernel tornado
|
||||
propagatedBuildInputs = [ python-dateutil ipython_genutils decorator pyzmq ipython jupyter_client ipykernel tornado
|
||||
] ++ lib.optionals (!isPy3k) [ futures ];
|
||||
|
||||
# Requires access to cluster
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub
|
||||
, six
|
||||
, pytest
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
checkInputs = [ dateutil pytest ];
|
||||
checkInputs = [ python-dateutil pytest ];
|
||||
checkPhase = ''
|
||||
rm tox.ini
|
||||
pytest -k 'not dumps and not time' --ignore=test/test_propclass.py
|
||||
|
@ -4,7 +4,7 @@
|
||||
, traitlets
|
||||
, jupyter_core
|
||||
, pyzmq
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, isPyPy
|
||||
, py
|
||||
, tornado
|
||||
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
||||
traitlets
|
||||
jupyter_core
|
||||
pyzmq
|
||||
dateutil
|
||||
python-dateutil
|
||||
tornado
|
||||
] ++ lib.optional isPyPy py;
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
, traitlets
|
||||
, jupyter_core
|
||||
, pyzmq
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, isPyPy
|
||||
, py
|
||||
, tornado
|
||||
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
||||
traitlets
|
||||
jupyter_core
|
||||
pyzmq
|
||||
dateutil
|
||||
python-dateutil
|
||||
tornado
|
||||
] ++ lib.optional isPyPy py;
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
, alembic
|
||||
, async_generator
|
||||
, certipy
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, entrypoints
|
||||
, jinja2
|
||||
, jupyter-telemetry
|
||||
@ -115,7 +115,7 @@ buildPythonPackage rec {
|
||||
alembic
|
||||
async_generator
|
||||
certipy
|
||||
dateutil
|
||||
python-dateutil
|
||||
entrypoints
|
||||
jinja2
|
||||
jupyter-telemetry
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ lib, fetchurl, buildPythonPackage, isPy3k, pycurl, six, rpm, dateutil }:
|
||||
{ lib, fetchurl, buildPythonPackage, isPy3k, pycurl, six, rpm, python-dateutil }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "koji";
|
||||
@ -10,7 +10,7 @@ buildPythonPackage rec {
|
||||
sha256 = "0a3kn3qvspvx15imgzzzjsbvw6bqmbk29apbliqwifa9cj7pvb40";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pycurl six rpm dateutil ];
|
||||
propagatedBuildInputs = [ pycurl six rpm python-dateutil ];
|
||||
|
||||
# Judging from SyntaxError
|
||||
disabled = isPy3k;
|
||||
|
@ -3,14 +3,14 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "libarcus";
|
||||
version = "4.9.0";
|
||||
version = "4.10.0";
|
||||
format = "other";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Ultimaker";
|
||||
repo = "libArcus";
|
||||
rev = version;
|
||||
sha256 = "0wq72nf680bwxijjajb4piw563rnvflshmw96kqln4lsny7ydjj2";
|
||||
sha256 = "1ahka8s8fjwymyr7pca7i7h51ikfr35zy4nkzfcjn946x7p0dprf";
|
||||
};
|
||||
|
||||
disabled = pythonOlder "3.4.0";
|
||||
|
@ -2,14 +2,14 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "libsavitar";
|
||||
version = "4.9.0";
|
||||
version = "4.10.0";
|
||||
format = "other";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Ultimaker";
|
||||
repo = "libSavitar";
|
||||
rev = version;
|
||||
sha256 = "0434cb19v9phc9xicbmgpbig18ivplcpqhnsjgca4p8n8c715k9h";
|
||||
sha256 = "1zyzsrdm5aazv12h7ga35amfryrbxdsmx3abvh27hixyh9f92fdp";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user