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

49 lines
960 B
Nix

{
lib,
buildPythonPackage,
cryptography,
fetchFromGitHub,
http-sfv,
pytestCheckHook,
pythonOlder,
setuptools-scm,
requests,
}:
buildPythonPackage rec {
pname = "http-message-signatures";
version = "0.5.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pyauth";
repo = pname;
rev = "v${version}";
hash = "sha256-Jsivw4lNA/2oqsOGGx8D4gUPftzuys877A9RXyapnSQ=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
cryptography
http-sfv
];
nativeCheckInputs = [
pytestCheckHook
requests
];
pytestFlagsArray = [ "test/test.py" ];
pythonImportsCheck = [ "http_message_signatures" ];
meta = with lib; {
description = "Requests authentication module for HTTP Signature";
homepage = "https://github.com/pyauth/http-message-signatures";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}