python3Packages.requests-pkcs12: init at 1.9
This commit is contained in:
parent
57ff22deab
commit
568d8e5534
|
@ -0,0 +1,34 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pyopenssl
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "requests-pkcs12";
|
||||
version = "1.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "m-click";
|
||||
repo = "requests_pkcs12";
|
||||
rev = version;
|
||||
sha256 = "09nm3c6v911d1vwwi0f7mzapbkq7rnsl7026pb13j6ma8pkxznms";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
pyopenssl
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "requests_pkcs12" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "PKCS#12 support for the Python requests library";
|
||||
homepage = "https://github.com/m-click/requests_pkcs12";
|
||||
license = with licenses; [ isc ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -7208,6 +7208,8 @@ in {
|
|||
|
||||
requests_oauthlib = callPackage ../development/python-modules/requests-oauthlib { };
|
||||
|
||||
requests-pkcs12 = callPackage ../development/python-modules/requests-pkcs12 { };
|
||||
|
||||
requests-toolbelt = callPackage ../development/python-modules/requests-toolbelt { };
|
||||
|
||||
requests_toolbelt = self.requests-toolbelt; # Old attr, 2017-09-26
|
||||
|
@ -7222,6 +7224,8 @@ in {
|
|||
|
||||
respx = callPackage ../development/python-modules/respx { };
|
||||
|
||||
restfly = callPackage ../development/python-modules/restfly { };
|
||||
|
||||
restrictedpython = callPackage ../development/python-modules/restrictedpython { };
|
||||
|
||||
restructuredtext_lint = callPackage ../development/python-modules/restructuredtext_lint { };
|
||||
|
|
Loading…
Reference in New Issue