blob: 14374f2627ff6043da21ec48fff8c4e15b62a8bc (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
flask,
bcrypt,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "flask-bcrypt";
version = "1.0.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "maxcountryman";
repo = "flask-bcrypt";
rev = version;
hash = "sha256-WlIholi/nzq6Ikc0LS6FhG0Q5Kz0kvvAlA2YJ7EksZ4=";
};
postPatch = ''
# Backport fix for test_long_password from upstream PR: https://github.com/maxcountryman/flask-bcrypt/pull/96
substituteInPlace test_bcrypt.py \
--replace-fail "self.assertTrue(self.bcrypt.check_password_hash(pw_hash, 'A' * 80))" \
"self.assertTrue(self.bcrypt.check_password_hash(pw_hash, 'A' * 72))"
'';
propagatedBuildInputs = [
flask
bcrypt
];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "flask_bcrypt" ];
meta = {
description = "Brcrypt hashing for Flask";
homepage = "https://github.com/maxcountryman/flask-bcrypt";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|