summary refs log tree commit diff
path: root/pkgs/development/python-modules/argon2-cffi/default.nix
blob: da9022c93f19205b85c9c93007426ca6acf123b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ hypothesis
, pytestCheckHook
, buildPythonPackage
, fetchPypi
, lib
, hatchling
, hatch-vcs
, hatch-fancy-pypi-readme
, argon2-cffi-bindings
}:

buildPythonPackage rec {
  pname = "argon2-cffi";
  version = "23.1.0";
  format = "pyproject";

  src = fetchPypi {
    pname = "argon2_cffi";
    inherit version;
    hash = "sha256-h5w+eaJynOdo67fTbUYJ46eKTKLsOp8SKGygV+PQ2wg=";
  };

  nativeBuildInputs = [ hatchling hatch-vcs hatch-fancy-pypi-readme ];

  propagatedBuildInputs = [ argon2-cffi-bindings ];

  nativeCheckInputs = [ hypothesis pytestCheckHook ];

  pythonImportsCheck = [ "argon2" ];

  meta = with lib; {
    description = "Secure Password Hashes for Python";
    homepage    = "https://argon2-cffi.readthedocs.io/";
    license     = licenses.mit;
  };
}