Loading pkgs/development/python-modules/oras/default.nix 0 → 100644 +54 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , jsonschema , pytestCheckHook , pythonOlder , requests , setuptools }: buildPythonPackage rec { pname = "oras"; version = "0.1.26"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "oras-project"; repo = "oras-py"; rev = "refs/tags/${version}"; hash = "sha256-t3098ZeAkwLhinyrFwmi7KKrFgZZKPN6qvp3REQNwG8="; }; 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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -8653,6 +8653,8 @@ self: super: with self; { orange-widget-base = callPackage ../development/python-modules/orange-widget-base { }; oras = callPackage ../development/python-modules/oras { }; orderedmultidict = callPackage ../development/python-modules/orderedmultidict { }; ordered-set = callPackage ../development/python-modules/ordered-set { }; Loading Loading
pkgs/development/python-modules/oras/default.nix 0 → 100644 +54 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , jsonschema , pytestCheckHook , pythonOlder , requests , setuptools }: buildPythonPackage rec { pname = "oras"; version = "0.1.26"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "oras-project"; repo = "oras-py"; rev = "refs/tags/${version}"; hash = "sha256-t3098ZeAkwLhinyrFwmi7KKrFgZZKPN6qvp3REQNwG8="; }; 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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -8653,6 +8653,8 @@ self: super: with self; { orange-widget-base = callPackage ../development/python-modules/orange-widget-base { }; oras = callPackage ../development/python-modules/oras { }; orderedmultidict = callPackage ../development/python-modules/orderedmultidict { }; ordered-set = callPackage ../development/python-modules/ordered-set { }; Loading