biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / argon2-cffi / default.nix
blob2ab26082ad16c123d08165e2606816880708c359
2   hypothesis,
3   pytestCheckHook,
4   buildPythonPackage,
5   fetchPypi,
6   lib,
7   hatchling,
8   hatch-vcs,
9   hatch-fancy-pypi-readme,
10   argon2-cffi-bindings,
13 buildPythonPackage rec {
14   pname = "argon2-cffi";
15   version = "23.1.0";
16   format = "pyproject";
18   src = fetchPypi {
19     pname = "argon2_cffi";
20     inherit version;
21     hash = "sha256-h5w+eaJynOdo67fTbUYJ46eKTKLsOp8SKGygV+PQ2wg=";
22   };
24   nativeBuildInputs = [
25     hatchling
26     hatch-vcs
27     hatch-fancy-pypi-readme
28   ];
30   propagatedBuildInputs = [ argon2-cffi-bindings ];
32   nativeCheckInputs = [
33     hypothesis
34     pytestCheckHook
35   ];
37   pythonImportsCheck = [ "argon2" ];
39   meta = with lib; {
40     description = "Secure Password Hashes for Python";
41     homepage = "https://argon2-cffi.readthedocs.io/";
42     license = licenses.mit;
43   };