Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / ocifs / default.nix
blob8fab505c310d1e7ff772d3163bb76d418637abdf
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , flit-core
5 , fsspec
6 , oci
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "ocifs";
12   version = "1.3.1";
13   pyproject = true;
15   disabled = pythonOlder "3.6";
17   src = fetchFromGitHub {
18     owner = "oracle";
19     repo = "ocifs";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-IGl9G4NyzhcqrfYfgeZin+wt1OwHmh6780MPfZBwsXA=";
22   };
24   nativeBuildInputs = [
25     flit-core
26   ];
28   propagatedBuildInputs = [
29     fsspec
30     oci
31   ];
33   # Module has no tests
34   doCheck = false;
36   pythonImportsCheck = [
37     "ocifs"
38   ];
40   meta = with lib; {
41     description = "Oracle Cloud Infrastructure Object Storage fsspec implementation";
42     homepage = "https://ocifs.readthedocs.io";
43     changelog = "https://github.com/oracle/ocifs/releases/tag/v${version}";
44     license = with licenses; [ upl ];
45     maintainers = with maintainers; [ fab ];
46   };