1 { lib, buildPythonPackage, fetchPypi
2 , isPyPy, cffi, pytest, six }:
4 buildPythonPackage rec {
10 sha256 = "0b0069c752ec14172c5f78208f1863d7ad6755a6fae6fe76ec2c80d13be41e42";
13 checkInputs = [ pytest ];
15 propagatedBuildInputs = [ six ] ++ lib.optional (!isPyPy) cffi;
18 description = "Modern password hashing for your software and your servers";
19 homepage = "https://github.com/pyca/bcrypt/";
20 license = licenses.asl20;
21 maintainers = with maintainers; [ domenkozar ];