2024-04-16 17:26:59 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
appdirs,
|
|
|
|
buildPythonPackage,
|
|
|
|
cryptography,
|
|
|
|
fetchFromGitHub,
|
|
|
|
flit-core,
|
|
|
|
id,
|
|
|
|
importlib-resources,
|
|
|
|
pretend,
|
|
|
|
pydantic,
|
|
|
|
pyjwt,
|
|
|
|
pyopenssl,
|
|
|
|
pytestCheckHook,
|
|
|
|
pythonOlder,
|
|
|
|
requests,
|
|
|
|
rich,
|
|
|
|
securesystemslib,
|
|
|
|
sigstore-protobuf-specs,
|
|
|
|
sigstore-rekor-types,
|
|
|
|
tuf,
|
2023-12-17 21:41:15 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sigstore-python";
|
2024-04-16 17:26:20 +02:00
|
|
|
version = "2.1.5";
|
2023-12-17 21:41:15 +01:00
|
|
|
pyproject = true;
|
|
|
|
|
2024-01-19 09:29:29 +01:00
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
|
2023-12-17 21:41:15 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sigstore";
|
|
|
|
repo = "sigstore-python";
|
2024-01-19 09:13:45 +01:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-04-16 17:26:20 +02:00
|
|
|
hash = "sha256-lqmrM4r1yPVCcvWNC9CKYMyryuIyliI2Y+TAYgAwA1Y=";
|
2023-12-17 21:41:15 +01:00
|
|
|
};
|
|
|
|
|
2024-04-16 17:26:59 +02:00
|
|
|
build-system = [ flit-core ];
|
2023-12-17 21:41:15 +01:00
|
|
|
|
2024-04-16 17:11:58 +02:00
|
|
|
dependencies = [
|
2023-12-17 21:41:15 +01:00
|
|
|
appdirs
|
|
|
|
cryptography
|
|
|
|
id
|
|
|
|
importlib-resources
|
|
|
|
pydantic
|
|
|
|
pyjwt
|
|
|
|
pyopenssl
|
|
|
|
requests
|
|
|
|
rich
|
|
|
|
securesystemslib
|
|
|
|
sigstore-protobuf-specs
|
|
|
|
sigstore-rekor-types
|
|
|
|
tuf
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
2024-01-19 09:29:29 +01:00
|
|
|
pretend
|
2023-12-17 21:41:15 +01:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2024-01-19 09:29:29 +01:00
|
|
|
preCheck = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
'';
|
|
|
|
|
2024-04-16 17:26:59 +02:00
|
|
|
pythonImportsCheck = [ "sigstore" ];
|
2023-12-17 21:41:15 +01:00
|
|
|
|
2024-01-19 09:29:29 +01:00
|
|
|
disabledTests = [
|
|
|
|
# Tests require network access
|
|
|
|
"test_fail_init_url"
|
|
|
|
"test_get_identity_token_bad_code"
|
|
|
|
"test_identity_proof_claim_lookup"
|
|
|
|
"test_init_url"
|
|
|
|
"test_production"
|
|
|
|
"test_sct_verify_keyring"
|
|
|
|
"test_sign_rekor_entry_consistent"
|
|
|
|
"test_verification_materials_retrieves_rekor_entry"
|
|
|
|
"test_verifier"
|
|
|
|
];
|
|
|
|
|
2023-12-17 21:41:15 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A codesigning tool for Python packages";
|
|
|
|
homepage = "https://github.com/sigstore/sigstore-python";
|
2024-01-19 09:13:45 +01:00
|
|
|
changelog = "https://github.com/sigstore/sigstore-python/blob/${version}/CHANGELOG.md";
|
2023-12-17 21:41:15 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ];
|
2024-04-16 17:11:58 +02:00
|
|
|
mainProgram = "sigstore";
|
2023-12-17 21:41:15 +01:00
|
|
|
};
|
|
|
|
}
|