Merge pull request #268464 from fabaff/ocifs-bump

python311Packages.ocifs: 1.2.1 -> 1.3.0
This commit is contained in:
Fabian Affolter
2023-11-19 13:29:45 +01:00
committed by GitHub
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, fsspec
, oci
, pythonOlder
@@ -8,18 +9,22 @@
buildPythonPackage rec {
pname = "ocifs";
version = "1.2.1";
format = "setuptools";
version = "1.3.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "oracle";
repo = pname;
repo = "ocifs";
rev = "refs/tags/${version}";
hash = "sha256-HY2LTm3JckAzNMVuAJNs/0LixBwiG/QKa7ILquY0Q+c=";
hash = "sha256-ugNITi2tSf3lhbASgr6ErmFDYinQjnhmtRjV3YL7F9U=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
fsspec
oci
@@ -35,6 +40,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Oracle Cloud Infrastructure Object Storage fsspec implementation";
homepage = "https://ocifs.readthedocs.io";
changelog = "https://github.com/oracle/ocifs/releases/tag/${version}";
license = with licenses; [ upl ];
maintainers = with maintainers; [ fab ];
};