My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/requests-http-signature/default.nix

61 lines
1.1 KiB

{ lib
, buildPythonPackage
, fetchFromGitHub
, http-message-signatures
, http-sfv
, requests
, pytestCheckHook
, pythonOlder
, setuptools-scm
}:
buildPythonPackage rec {
pname = "requests-http-signature";
version = "0.7.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pyauth";
repo = pname;
rev = "v${version}";
hash = "sha256-sW2vYqT/nY27DvEKHdptc3dUpuqKmD7PLMs+Xp+cpeU=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
http-message-signatures
http-sfv
requests
];
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"test/test.py"
];
disabledTests = [
# Test require network access
"test_readme_example"
];
pythonImportsCheck = [
"requests_http_signature"
];
meta = with lib; {
description = "Requests authentication module for HTTP Signature";
homepage = "https://github.com/kislyuk/requests-http-signature";
license = licenses.asl20;
maintainers = with maintainers; [ mmai ];
};
}