lenticular_cloud2/default.nix

165 lines
3.4 KiB
Nix
Raw Normal View History

2022-02-04 20:47:01 +00:00
{
pkgs,
2022-06-17 11:39:03 +00:00
python ? pkgs.python310,
2022-06-17 07:15:58 +00:00
nodejs ? pkgs.nodejs,
2022-02-04 20:47:01 +00:00
...}:
let
2022-06-17 07:15:58 +00:00
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 { };
2022-02-04 20:47:01 +00:00
urlobject = with python.pkgs; buildPythonPackage rec {
pname = "URLObject";
version = "2.4.3";
src = fetchPypi {
inherit pname version;
sha256 = "47b2e20e6ab9c8366b2f4a3566b6ff4053025dad311c4bb71279bbcfa2430caa";
};
doCheck = true;
propagatedBuildInputs = [
];
};
python_attrs = with python.pkgs; buildPythonPackage rec {
pname = "attrs";
version = "21.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd";
};
#doCheck = true;
doCheck = false;
propagatedBuildInputs = [
];
};
2022-02-04 20:47:01 +00:00
flask-dance = with python.pkgs; buildPythonPackage rec {
pname = "Flask-Dance";
2022-06-17 07:15:58 +00:00
version = "6.0.0";
2022-02-04 20:47:01 +00:00
src = fetchPypi {
inherit pname version;
2022-06-17 07:15:58 +00:00
sha256 = "15bb3c412eb789a2d904bfd0fd44aac2d94f82703a51d14123fd336136d55db0";
2022-02-04 20:47:01 +00:00
};
doCheck = false;
propagatedBuildInputs = [
requests
oauthlib
requests_oauthlib
flask
urlobject
];
checkInputs = [
pytest
nose
2022-02-04 20:47:01 +00:00
pytest-mock
responses
freezegun
coverage
# testing sqlalchemy support
sqlalchemy
flask_sqlalchemy
# testing integration with other extensions
flask_login
flask-caching
betamax
# we need the `signedtoken` extra for `oauthlib`
# oauthlib[signedtoken]
];
};
ldap3-orm = with python.pkgs; buildPythonPackage rec {
pname = "ldap3-orm";
version = "2.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "8783886d4ce90d66da61ce24619593a265b50f0de1fbebe86df95c6788661664";
};
doCheck = false;
propagatedBuildInputs = [
ldap3
six
];
};
u2flib-server = {};
ory-hydra-client-old = with python.pkgs; buildPythonPackage rec {
2022-02-04 20:47:01 +00:00
pname = "ory-hydra-client";
version = "1.10.6";
src = fetchPypi {
inherit pname version;
sha256 = "57f877e55a8f202db27f5cbae9c55a1b1a91848ef46d0cbd3b710ef77882095c";
};
doCheck = false;
propagatedBuildInputs = [
urllib3
python-dateutil
];
};
ory-hydra-client = with python.pkgs; buildPythonPackage rec {
pname = "ory-hydra-client";
version = "1.9.2";
src = ./libs/ory-hydra-client;
# doCheck = false;
propagatedBuildInputs = [
urllib3
python-dateutil
2022-06-17 07:15:58 +00:00
#python_attrs
attrs
httpx
];
2022-02-04 20:47:01 +00:00
};
in
{
nativeBuildInputs = with python.pkgs; [
flask
flask-restful
flask_sqlalchemy
flask_wtf
flask-babel
flask_login
requests
requests_oauthlib
ldap3
ldap3-orm
pyotp
cryptography
blinker
ory-hydra-client
2022-02-20 15:52:06 +00:00
authlib # as oauth client lib
2022-04-08 19:28:22 +00:00
fido2 # for webauthn
2022-02-20 15:52:06 +00:00
flask_migrate # db migrations
2022-02-04 20:47:01 +00:00
2022-06-17 07:15:58 +00:00
nodejs
#node-env
2022-02-04 20:47:01 +00:00
gunicorn
flask-dance
#python-u2flib-server
#flask-debug
];
testBuildInputs = with python.pkgs; [
pytest
pytest-mypy
flask_testing
tox
2022-06-17 07:15:58 +00:00
types-dateutil
nose
2022-02-04 20:47:01 +00:00
mypy
2022-04-08 19:28:22 +00:00
2022-02-04 20:47:01 +00:00
];
}