python313Packages.ocifs: add missing input (#383315)

This commit is contained in:
Nick Cao
2025-02-19 14:50:41 -05:00
committed by GitHub
@@ -6,6 +6,7 @@
fsspec,
oci,
pythonOlder,
requests,
}:
buildPythonPackage rec {
@@ -22,11 +23,12 @@ buildPythonPackage rec {
hash = "sha256-IGl9G4NyzhcqrfYfgeZin+wt1OwHmh6780MPfZBwsXA=";
};
nativeBuildInputs = [ flit-core ];
build-system = [ flit-core ];
propagatedBuildInputs = [
dependencies = [
fsspec
oci
requests
];
# Module has no tests
@@ -38,7 +40,7 @@ buildPythonPackage rec {
description = "Oracle Cloud Infrastructure Object Storage fsspec implementation";
homepage = "https://ocifs.readthedocs.io";
changelog = "https://github.com/oracle/ocifs/releases/tag/v${version}";
license = with licenses; [ upl ];
license = licenses.upl;
maintainers = with maintainers; [ fab ];
};
}