depot/third_party/nixpkgs/pkgs/development/python-modules/tuf/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

60 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
ed25519,
fetchFromGitHub,
hatchling,
pytestCheckHook,
pythonOlder,
requests,
securesystemslib,
}:
buildPythonPackage rec {
pname = "tuf";
version = "3.1.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "theupdateframework";
repo = "python-tuf";
rev = "refs/tags/v${version}";
hash = "sha256-HiF/b6aOhDhhQqYx/bjMXHABxmAJY4vkLlTheiL8zEo=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "hatchling==" "hatchling>="
'';
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [
requests
securesystemslib
] ++ securesystemslib.optional-dependencies.pynacl ++ securesystemslib.optional-dependencies.crypto;
nativeCheckInputs = [
ed25519
pytestCheckHook
];
pythonImportsCheck = [ "tuf" ];
preCheck = ''
cd tests
'';
meta = with lib; {
description = "Python reference implementation of The Update Framework (TUF)";
homepage = "https://github.com/theupdateframework/python-tuf";
changelog = "https://github.com/theupdateframework/python-tuf/blob/v${version}/docs/CHANGELOG.md";
license = with licenses; [
asl20
mit
];
maintainers = with maintainers; [ fab ];
};
}