pythonPackages.bcrypt: disable python2

This commit is contained in:
Jonathan Ringer 2020-08-16 19:11:30 -07:00
parent c379aa9f8e
commit 87371b8f63
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, isPyPy, fetchPypi
{ stdenv, buildPythonPackage, isPyPy, fetchPypi, pythonOlder
, cffi, pycparser, mock, pytest, py, six }:
with stdenv.lib;
@ -6,6 +6,7 @@ with stdenv.lib;
buildPythonPackage rec {
version = "3.2.0";
pname = "bcrypt";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;