504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
96 lines
1.8 KiB
Nix
96 lines
1.8 KiB
Nix
{ lib
|
|
, asn1crypto
|
|
, azure-identity
|
|
, azure-keyvault-keys
|
|
, boto3
|
|
, botocore
|
|
, buildPythonPackage
|
|
, cryptography
|
|
, ed25519
|
|
, fetchFromGitHub
|
|
, google-cloud-kms
|
|
, hatchling
|
|
, pynacl
|
|
, pyspx
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "securesystemslib";
|
|
version = "0.31.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "secure-systems-lab";
|
|
repo = "securesystemslib";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-REi38rIVZmWawFGcrPl9QzSthW4jHZDr/0ug7kJRz3Y=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
PySPX = [
|
|
pyspx
|
|
];
|
|
awskms = [
|
|
boto3
|
|
botocore
|
|
cryptography
|
|
];
|
|
azurekms = [
|
|
azure-identity
|
|
azure-keyvault-keys
|
|
cryptography
|
|
];
|
|
crypto = [
|
|
cryptography
|
|
];
|
|
gcpkms = [
|
|
cryptography
|
|
google-cloud-kms
|
|
];
|
|
hsm = [
|
|
asn1crypto
|
|
cryptography
|
|
# pykcs11
|
|
];
|
|
pynacl = [
|
|
pynacl
|
|
];
|
|
# Circular dependency
|
|
# sigstore = [
|
|
# sigstore
|
|
# ];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
ed25519
|
|
pytestCheckHook
|
|
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
|
|
|
|
pythonImportsCheck = [
|
|
"securesystemslib"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# pykcs11 is not available
|
|
"tests/test_hsm_signer.py"
|
|
# Ignore vendorized tests
|
|
"securesystemslib/_vendor/"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Cryptographic and general-purpose routines";
|
|
homepage = "https://github.com/secure-systems-lab/securesystemslib";
|
|
changelog = "https://github.com/secure-systems-lab/securesystemslib/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|
|
|