ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / ocifs / default.nix
blobbf5bbe175aded8376a527a2eba16048f50b35994
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , fsspec
5 , oci
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "ocifs";
11   version = "1.1.3";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchFromGitHub {
17     owner = "oracle";
18     repo = pname;
19     rev = "refs/tags/${version}";
20     hash = "sha256-wMKrK7ONc3M6beF9czrGddSeElCOTGh+JD9efb4Shbg=";
21   };
23   propagatedBuildInputs = [
24     fsspec
25     oci
26   ];
28   # Module has no tests
29   doCheck = false;
31   pythonImportsCheck = [
32     "ocifs"
33   ];
35   meta = with lib; {
36     description = "Oracle Cloud Infrastructure Object Storage fsspec implementation";
37     homepage = "https://ocifs.readthedocs.io";
38     license = with licenses; [ upl ];
39     maintainers = with maintainers; [ fab ];
40   };