nixpkgs/pkgs/development/python-modules/passlib/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

63 lines
1.5 KiB
Nix

{
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 ];
};
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 = with maintainers; [ ];
};
}