pythonPackages.bcrypt: 3.1.6 -> 3.1.7

This commit is contained in:
Pierre Bourdon 2019-07-20 04:28:00 +02:00 committed by Frederik Rietdijk
parent d5ce2a186c
commit 16ad5d5401

View File

@ -4,12 +4,12 @@
with stdenv.lib;
buildPythonPackage rec {
version = "3.1.6";
version = "3.1.7";
pname = "bcrypt";
src = fetchPypi {
inherit pname version;
sha256 = "44636759d222baa62806bbceb20e96f75a015a6381690d1bc2eda91c01ec02ea";
sha256 = "0b0069c752ec14172c5f78208f1863d7ad6755a6fae6fe76ec2c80d13be41e42";
};
buildInputs = [ pycparser mock pytest py ];
propagatedBuildInputs = [ six ] ++ optional (!isPyPy) cffi;