11 buildPythonPackage rec {
14 format = "setuptools";
16 # Fetching from GitHub as tests are missing in PyPI
17 src = fetchFromGitHub {
19 repo = "python-fastpbkdf2";
21 sha256 = "1hvvlk3j28i6nswb6gy3mq7278nq0mgfnpxh1rv6jvi7xhd7qmlc";
24 buildInputs = [ openssl ];
25 nativeCheckInputs = [ pytest ];
26 propagatedBuildInputs = [
30 propagatedNativeBuildInputs = [ cffi ];
33 homepage = "https://github.com/Ayrx/python-fastpbkdf2";
34 description = "Python bindings for fastpbkdf2";
35 license = licenses.bsd3;
36 maintainers = with maintainers; [ jqueiroz ];