python310Packages.http-message-signatures: init at 0.4.3

main
Fabian Affolter 2 years ago
parent e7b60a8b81
commit a98e1af265
  1. 56
      pkgs/development/python-modules/http-message-signatures/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,56 @@
{ lib
, buildPythonPackage
, cryptography
, fetchFromGitHub
, http-sfv
, pytestCheckHook
, pythonOlder
, setuptools-scm
, requests
}:
buildPythonPackage rec {
pname = "http-message-signatures";
version = "0.4.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pyauth";
repo = pname;
rev = "v${version}";
hash = "sha256-CMF9p913P04Hx/221ck1e0AoAsP7aXkX2UKp4S1nnU0=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
cryptography
http-sfv
];
checkInputs = [
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 ];
};
}

@ -3887,6 +3887,8 @@ in {
httplib2 = callPackage ../development/python-modules/httplib2 { };
http-message-signatures = callPackage ../development/python-modules/http-message-signatures { };
http-parser = callPackage ../development/python-modules/http-parser { };
http-sfv = callPackage ../development/python-modules/http-sfv { };

Loading…
Cancel
Save