lol

python3.pkgs.bcrypt: fix build

also use pyproject format as we're heading that direction.

authored by

Frederik Rietdijk and committed by
Martin Weinelt
d52b53fd 0594c921

+7 -3
+7 -3
pkgs/development/python-modules/bcrypt/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , setuptools 3 4 , isPyPy 4 5 , fetchPypi 5 6 , pythonOlder ··· 11 12 buildPythonPackage rec { 12 13 pname = "bcrypt"; 13 14 version = "3.2.0"; 14 - format = "setuptools"; 15 + format = "pyproject"; 15 16 16 17 disabled = pythonOlder "3.6"; 17 18 ··· 20 21 sha256 = "5b93c1726e50a93a033c36e5ca7fdcd29a5c7395af50a6892f5d9e7c6cfbfb29"; 21 22 }; 22 23 24 + nativeBuildInputs = [ 25 + setuptools 26 + ]; 27 + 23 28 propagatedBuildInputs = [ 24 29 six 25 - ] ++ lib.optional (!isPyPy) [ 26 30 cffi 27 31 ]; 28 32 29 - propagatedNativeBuildInputs = lib.optional (!isPyPy) [ 33 + propagatedNativeBuildInputs = [ 30 34 cffi 31 35 ]; 32 36