1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{
lib,
buildPythonPackage,
fetchPypi,
argon2-cffi,
bcrypt,
cryptography,
pytestCheckHook,
pythonOlder,
pytest-xdist,
}:
buildPythonPackage rec {
pname = "passlib";
version = "1.7.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-3v1Q9ytlxUAqssVzgwppeOXyAq0NmEeTyN3ixBUuvgQ";
};
passthru.optional-dependencies = {
argon2 = [ argon2-cffi ];
bcrypt = [ bcrypt ];
totp = [ cryptography ];
};
# Fix for https://foss.heptapod.net/python-libs/passlib/-/issues/190
postPatch = ''
substituteInPlace passlib/handlers/bcrypt.py \
--replace-fail "version = _bcrypt.__about__.__version__" \
"version = getattr(getattr(_bcrypt, '__about__', _bcrypt), '__version__', '<unknown>')"
'';
nativeCheckInputs =
[
pytestCheckHook
pytest-xdist
]
++ passthru.optional-dependencies.argon2
++ passthru.optional-dependencies.bcrypt
++ passthru.optional-dependencies.totp;
pythonImportsCheck = [ "passlib" ];
disabledTests = [
# timming sensitive
"test_dummy_verify"
"test_encrypt_cost_timing"
# These tests fail because they don't expect support for algorithms provided through libxcrypt
"test_82_crypt_support"
];
pytestFlagsArray = [
# hashing algorithms we don't support anymore
"--deselect=passlib/tests/test_handlers.py::des_crypt_os_crypt_test::test_82_crypt_support"
"--deselect=passlib/tests/test_handlers.py::md5_crypt_os_crypt_test::test_82_crypt_support"
"--deselect=passlib/tests/test_handlers.py::sha256_crypt_os_crypt_test::test_82_crypt_support"
];
meta = with lib; {
description = "Password hashing library for Python";
homepage = "https://foss.heptapod.net/python-libs/passlib";
license = licenses.bsdOriginal;
maintainers = [ ];
};
}
|