update packages

This commit is contained in:
TuxCoder 2022-06-17 09:15:58 +02:00
parent 2b86fa89c4
commit 8287b01e40
3 changed files with 465 additions and 473 deletions

View file

@ -1,8 +1,19 @@
{ {
pkgs, pkgs,
python ? pkgs.python39, python ? pkgs.python39,
nodejs ? pkgs.nodejs,
...}: ...}:
let let
nixNodePackage = builtins.fetchGit {
url = "https://github.com/mkg20001/nix-node-package.git";
rev = "03285e212016db5f28530563b58cfcc5706ff73f";
};
makeNode = import "${nixNodePackage}/nix/default.nix" pkgs {
root = ./.;
install = false;
nodejs = nodejs;
};
node-env = makeNode { };
urlobject = with python.pkgs; buildPythonPackage rec { urlobject = with python.pkgs; buildPythonPackage rec {
pname = "URLObject"; pname = "URLObject";
@ -31,10 +42,10 @@ let
flask-dance = with python.pkgs; buildPythonPackage rec { flask-dance = with python.pkgs; buildPythonPackage rec {
pname = "Flask-Dance"; pname = "Flask-Dance";
version = "5.1.0"; version = "6.0.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "9eb5a404ef1b06a58aabbe5ac496908bda0482af1cf08e8c00188493405842fd"; sha256 = "15bb3c412eb789a2d904bfd0fd44aac2d94f82703a51d14123fd336136d55db0";
}; };
doCheck = false; doCheck = false;
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -99,7 +110,8 @@ let
propagatedBuildInputs = [ propagatedBuildInputs = [
urllib3 urllib3
python-dateutil python-dateutil
python_attrs #python_attrs
attrs
httpx httpx
]; ];
}; };
@ -124,6 +136,8 @@ in
fido2 # for webauthn fido2 # for webauthn
flask_migrate # db migrations flask_migrate # db migrations
nodejs
#node-env
gunicorn gunicorn
flask-dance flask-dance
@ -141,6 +155,8 @@ in
flask_testing flask_testing
tox tox
types-dateutil
nose nose
mypy mypy

889
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -3,33 +3,32 @@
"version": "2.0.0", "version": "2.0.0",
"description": "Lenticular Cloud ================", "description": "Lenticular Cloud ================",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "build": "webpack-cli"
}, },
"author": "TuxCoder", "author": "TuxCoder",
"license": "GPLv3", "license": "GPLv3",
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-free": "*", "@fortawesome/fontawesome-free": "^6.1.1",
"bootstrap": "^4.6.1", "bootstrap": "^4.6.1",
"cbor-web": "*", "cbor-web": "*",
"css-loader": "*", "css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "*", "css-minimizer-webpack-plugin": "^4.0.0",
"file-loader": "*", "file-loader": "*",
"jquery": "*", "jquery": "*",
"jquery-form": "*", "jquery-form": "*",
"mini-css-extract-plugin": "*", "mini-css-extract-plugin": "^2.6.0",
"node-forge": "*", "node-forge": "*",
"popper.js": "*", "popper.js": "*",
"qrcode-svg": "~1.1.0", "qrcode-svg": "~1.1.0",
"sass": "*", "sass": "^1.52.1",
"sass-loader": "*", "sass-loader": "^13.0.0",
"style-loader": "*", "style-loader": "*",
"terser-webpack-plugin": "*", "terser-webpack-plugin": "*",
"ts-loader": "*", "ts-loader": "^9.3.0",
"url-loader": "*", "url-loader": "*",
"webpack": "*", "webpack": "^5.72.1",
"webpack-cli": "*" "webpack-cli": "*",
},
"devDependencies": {
"simple-form-submit": "*" "simple-form-submit": "*"
} },
"devDependencies": {}
} }