Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / ocifs / default.nix
blob479f2c8396486aace345452e7ccf0ed571d005fc
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.0";
13   pyproject = true;
15   disabled = pythonOlder "3.6";
17   src = fetchFromGitHub {
18     owner = "oracle";
19     repo = "ocifs";
20     rev = "refs/tags/${version}";
21     hash = "sha256-ugNITi2tSf3lhbASgr6ErmFDYinQjnhmtRjV3YL7F9U=";
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/${version}";
44     license = with licenses; [ upl ];
45     maintainers = with maintainers; [ fab ];
46   };