Merge pull request #268464 from fabaff/ocifs-bump

python311Packages.ocifs: 1.2.1 -> 1.3.0

authored by Fabian Affolter and committed by GitHub 5b882202 979a5a29

+10 -4
+10 -4
pkgs/development/python-modules/ocifs/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , flit-core 4 5 , fsspec 5 6 , oci 6 7 , pythonOlder ··· 8 9 9 10 buildPythonPackage rec { 10 11 pname = "ocifs"; 11 - version = "1.2.1"; 12 - format = "setuptools"; 12 + version = "1.3.0"; 13 + pyproject = true; 13 14 14 15 disabled = pythonOlder "3.6"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "oracle"; 18 - repo = pname; 19 + repo = "ocifs"; 19 20 rev = "refs/tags/${version}"; 20 - hash = "sha256-HY2LTm3JckAzNMVuAJNs/0LixBwiG/QKa7ILquY0Q+c="; 21 + hash = "sha256-ugNITi2tSf3lhbASgr6ErmFDYinQjnhmtRjV3YL7F9U="; 21 22 }; 23 + 24 + nativeBuildInputs = [ 25 + flit-core 26 + ]; 22 27 23 28 propagatedBuildInputs = [ 24 29 fsspec ··· 35 40 meta = with lib; { 36 41 description = "Oracle Cloud Infrastructure Object Storage fsspec implementation"; 37 42 homepage = "https://ocifs.readthedocs.io"; 43 + changelog = "https://github.com/oracle/ocifs/releases/tag/${version}"; 38 44 license = with licenses; [ upl ]; 39 45 maintainers = with maintainers; [ fab ]; 40 46 };