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 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , fsspec 5 , oci 6 , pythonOlder ··· 8 9 buildPythonPackage rec { 10 pname = "ocifs"; 11 - version = "1.2.1"; 12 - format = "setuptools"; 13 14 disabled = pythonOlder "3.6"; 15 16 src = fetchFromGitHub { 17 owner = "oracle"; 18 - repo = pname; 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-HY2LTm3JckAzNMVuAJNs/0LixBwiG/QKa7ILquY0Q+c="; 21 }; 22 23 propagatedBuildInputs = [ 24 fsspec ··· 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 };
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , flit-core 5 , fsspec 6 , oci 7 , pythonOlder ··· 9 10 buildPythonPackage rec { 11 pname = "ocifs"; 12 + version = "1.3.0"; 13 + pyproject = true; 14 15 disabled = pythonOlder "3.6"; 16 17 src = fetchFromGitHub { 18 owner = "oracle"; 19 + repo = "ocifs"; 20 rev = "refs/tags/${version}"; 21 + hash = "sha256-ugNITi2tSf3lhbASgr6ErmFDYinQjnhmtRjV3YL7F9U="; 22 }; 23 + 24 + nativeBuildInputs = [ 25 + flit-core 26 + ]; 27 28 propagatedBuildInputs = [ 29 fsspec ··· 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 };