nixpkgs/pkgs/development/python-modules/bcrypt/default.nix

25 lines
690 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, isPyPy, fetchPypi, pythonOlder
, cffi, pycparser, mock, pytest, py, six }:
2017-01-13 16:19:46 +01:00
buildPythonPackage rec {
2020-08-16 19:30:53 +02:00
version = "3.2.0";
pname = "bcrypt";
2020-08-17 04:11:30 +02:00
disabled = pythonOlder "3.6";
2017-01-13 16:19:46 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 19:30:53 +02:00
sha256 = "5b93c1726e50a93a033c36e5ca7fdcd29a5c7395af50a6892f5d9e7c6cfbfb29";
2017-01-13 16:19:46 +01:00
};
2017-01-13 16:19:46 +01:00
buildInputs = [ pycparser mock pytest py ];
propagatedBuildInputs = [ six ] ++ lib.optional (!isPyPy) cffi;
meta = with lib; {
2017-01-13 16:19:46 +01:00
maintainers = with maintainers; [ domenkozar ];
description = "Modern password hashing for your software and your servers";
license = licenses.asl20;
homepage = "https://github.com/pyca/bcrypt/";
2017-01-13 16:19:46 +01:00
};
}