Merge pull request #116969 from Ma27/privacyidea-3.5
privacyIDEA: 3.3 -> 3.5.1
This commit is contained in:
commit
19a73dc174
@ -1,22 +1,24 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub, cacert, openssl, python
|
{ lib, buildPythonPackage, fetchFromGitHub, cacert, openssl, python, nixosTests
|
||||||
|
|
||||||
, cryptography, pyrad, pymysql, python-dateutil, flask-versioned, flask_script
|
, cryptography, pyrad, pymysql, python-dateutil, flask-versioned, flask_script
|
||||||
, defusedxml, croniter, flask_migrate, pyjwt, configobj, sqlsoup, pillow
|
, defusedxml, croniter, flask_migrate, pyjwt, configobj, sqlsoup, pillow
|
||||||
, python-gnupg, passlib, pyopenssl, beautifulsoup4, smpplib, flask-babel
|
, python-gnupg, passlib, pyopenssl, beautifulsoup4, smpplib, flask-babel
|
||||||
, ldap3, huey, pyyaml, qrcode, oauth2client, requests, lxml, cbor2, psycopg2
|
, ldap3, huey, pyyaml, qrcode, oauth2client, requests, lxml, cbor2, psycopg2
|
||||||
|
, pydash
|
||||||
|
|
||||||
, mock, pytest, responses, testfixtures
|
, mock, pytestCheckHook, responses, testfixtures
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "privacyIDEA";
|
pname = "privacyIDEA";
|
||||||
version = "3.3";
|
version = "3.5.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "188ki924dig899wlih45xfsm0s7mjkya56vii26bg02h91izrb4b";
|
sha256 = "sha256-XJnrrpU0x2Axu7W4G3oDTjSJuqEyh3C/0Aga5D0gw9k=";
|
||||||
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
@ -24,11 +26,24 @@ buildPythonPackage rec {
|
|||||||
defusedxml croniter flask_migrate pyjwt configobj sqlsoup pillow
|
defusedxml croniter flask_migrate pyjwt configobj sqlsoup pillow
|
||||||
python-gnupg passlib pyopenssl beautifulsoup4 smpplib flask-babel
|
python-gnupg passlib pyopenssl beautifulsoup4 smpplib flask-babel
|
||||||
ldap3 huey pyyaml qrcode oauth2client requests lxml cbor2 psycopg2
|
ldap3 huey pyyaml qrcode oauth2client requests lxml cbor2 psycopg2
|
||||||
|
pydash
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [ openssl mock pytest responses testfixtures ];
|
passthru.tests = { inherit (nixosTests) privacyidea; };
|
||||||
# issues with hardware token tests
|
|
||||||
doCheck = false;
|
checkInputs = [ openssl mock pytestCheckHook responses testfixtures ];
|
||||||
|
disabledTests = [
|
||||||
|
"AESHardwareSecurityModuleTestCase"
|
||||||
|
"test_01_cert_request"
|
||||||
|
"test_01_loading_scripts"
|
||||||
|
"test_02_cert_enrolled"
|
||||||
|
"test_02_enroll_rights"
|
||||||
|
"test_02_get_resolvers"
|
||||||
|
"test_02_success"
|
||||||
|
"test_03_get_identifiers"
|
||||||
|
"test_04_remote_user_auth"
|
||||||
|
"test_14_convert_timestamp_to_utc"
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "privacyidea" ];
|
pythonImportsCheck = [ "privacyidea" ];
|
||||||
|
|
||||||
@ -46,6 +61,6 @@ buildPythonPackage rec {
|
|||||||
description = "Multi factor authentication system (2FA, MFA, OTP Server)";
|
description = "Multi factor authentication system (2FA, MFA, OTP Server)";
|
||||||
license = licenses.agpl3Plus;
|
license = licenses.agpl3Plus;
|
||||||
homepage = "http://www.privacyidea.org";
|
homepage = "http://www.privacyidea.org";
|
||||||
maintainers = [ maintainers.globin ];
|
maintainers = with maintainers; [ globin ma27 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,30 @@
|
|||||||
|
From 2fe7a445bafedee2c43050e40697d8b0fd7f7b30 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Maximilian Bosch <maximilian@mbosch.me>
|
||||||
|
Date: Fri, 19 Mar 2021 19:37:34 +0100
|
||||||
|
Subject: [PATCH] Only build unit-tests
|
||||||
|
|
||||||
|
---
|
||||||
|
setup.cfg | 7 -------
|
||||||
|
1 file changed, 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/setup.cfg b/setup.cfg
|
||||||
|
index 2c2f49f..a5ec152 100644
|
||||||
|
--- a/setup.cfg
|
||||||
|
+++ b/setup.cfg
|
||||||
|
@@ -83,13 +83,6 @@ force_sort_within_sections = true
|
||||||
|
junit_family = xunit2
|
||||||
|
addopts =
|
||||||
|
--verbose
|
||||||
|
- --doctest-modules
|
||||||
|
- --no-cov-on-fail
|
||||||
|
- --cov-fail-under=100
|
||||||
|
- --cov-report=term-missing
|
||||||
|
- --cov-report=xml:build/coverage/coverage.xml
|
||||||
|
- --cov-report=html:build/coverage
|
||||||
|
- --junitxml=build/testresults/junit.xml
|
||||||
|
|
||||||
|
[coverage:run]
|
||||||
|
omit =
|
||||||
|
--
|
||||||
|
2.29.3
|
||||||
|
|
24
pkgs/development/python-modules/pydash/default.nix
Normal file
24
pkgs/development/python-modules/pydash/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, mock, pytestCheckHook, invoke }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pydash";
|
||||||
|
version = "4.9.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dgilland";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-BAyiSnILvujUOFOAkiXSgyozs2Q809pYihHwa+6BHcQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [ ./0001-Only-build-unit-tests.patch ];
|
||||||
|
|
||||||
|
checkInputs = [ mock pytestCheckHook invoke ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/dgilland/pydash";
|
||||||
|
description = "The kitchen sink of Python utility libraries for doing \"stuff\" in a functional way. Based on the Lo-Dash Javascript library.";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ ma27 ];
|
||||||
|
};
|
||||||
|
}
|
@ -5595,6 +5595,8 @@ in {
|
|||||||
|
|
||||||
pydantic = callPackage ../development/python-modules/pydantic { };
|
pydantic = callPackage ../development/python-modules/pydantic { };
|
||||||
|
|
||||||
|
pydash = callPackage ../development/python-modules/pydash { };
|
||||||
|
|
||||||
pydbus = callPackage ../development/python-modules/pydbus { };
|
pydbus = callPackage ../development/python-modules/pydbus { };
|
||||||
|
|
||||||
pydenticon = callPackage ../development/python-modules/pydenticon { };
|
pydenticon = callPackage ../development/python-modules/pydenticon { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user