depot/third_party/nixpkgs/pkgs/development/python-modules/oras/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

54 lines
990 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, jsonschema
, pytestCheckHook
, pythonOlder
, requests
, setuptools
}:
buildPythonPackage rec {
pname = "oras";
version = "0.1.27";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "oras-project";
repo = "oras-py";
rev = "refs/tags/${version}";
hash = "sha256-T2zuflew91UsEjhPKPjNxPBN+C//S1vWvXKVT602EVI=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
jsonschema
requests
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"oras"
];
disabledTests = [
# Test requires network access
"test_get_many_tags"
];
meta = with lib; {
description = "ORAS Python SDK";
homepage = "https://github.com/oras-project/oras-py";
changelog = "https://github.com/oras-project/oras-py/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}