depot/third_party/nixpkgs/pkgs/development/python-modules/spake2/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

45 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fetchpatch2,
setuptools,
hkdf,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "spake2";
version = "0.8";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "c17a614b29ee4126206e22181f70a406c618d3c6c62ca6d6779bce95e9c926f4";
};
patches = [
# https://github.com/warner/python-spake2/pull/16
(fetchpatch2 {
name = "python312-compat.patch";
url = "https://github.com/warner/python-spake2/commit/1b04d33106b105207c97c64b2589c45790720b0b.patch";
hash = "sha256-OoBz0lN17VyVGg6UfT+Zj9M1faFTNpPIhxrwCgUwMc8=";
})
];
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ hkdf ];
pythonImportsCheck = [ "spake2" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
changelog = "https://github.com/warner/python-spake2/blob/v${version}/NEWS";
description = "SPAKE2 password-authenticated key exchange library";
homepage = "https://github.com/warner/python-spake2";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}