1 { lib, fetchFromGitHub, buildPythonPackage
2 , openssl, pytest, cffi, six }:
4 buildPythonPackage rec {
9 # Fetching from GitHub as tests are missing in PyPI
10 src = fetchFromGitHub {
12 repo = "python-fastpbkdf2";
14 sha256 = "1hvvlk3j28i6nswb6gy3mq7278nq0mgfnpxh1rv6jvi7xhd7qmlc";
17 buildInputs = [ openssl ];
18 nativeCheckInputs = [ pytest ];
19 propagatedBuildInputs = [ cffi six ];
20 propagatedNativeBuildInputs = [ cffi ];
23 homepage = "https://github.com/Ayrx/python-fastpbkdf2";
24 description = "Python bindings for fastpbkdf2";
25 license = licenses.bsd3;
26 maintainers = with maintainers; [ jqueiroz ];