python39Packages.bcrypt: remove unused dependencies

This commit is contained in:
Sandro Jäckel 2022-03-29 22:14:32 +02:00 committed by Martin Weinelt
parent 27b5b67d9f
commit c7fa67725a

View File

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, isPyPy, fetchPypi, pythonOlder
, cffi, pycparser, mock, pytest, py, six }:
, cffi, pytestCheckHook, six }:
buildPythonPackage rec {
version = "3.2.0";
@ -11,12 +11,12 @@ buildPythonPackage rec {
sha256 = "5b93c1726e50a93a033c36e5ca7fdcd29a5c7395af50a6892f5d9e7c6cfbfb29";
};
buildInputs = [ pycparser mock pytest py ];
propagatedBuildInputs = [ six ] ++ lib.optional (!isPyPy) cffi;
propagatedNativeBuildInputs = lib.optional (!isPyPy) cffi;
checkInputs = [ pytestCheckHook ];
meta = with lib; {
maintainers = with maintainers; [ domenkozar ];
description = "Modern password hashing for your software and your servers";