nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.dvc-ssh: 4.1.1 -> 4.2.1

Changelog: https://github.com/iterative/dvc-ssh/releases/tag/4.2.1

+14 -8
+14 -8
pkgs/development/python-modules/dvc-ssh/default.nix
··· 6 6 fetchPypi, 7 7 setuptools-scm, 8 8 sshfs, 9 + pythonOlder, 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "dvc-ssh"; 13 - version = "4.1.1"; 14 + version = "4.2.1"; 14 15 pyproject = true; 15 16 17 + disabled = pythonOlder "3.9"; 18 + 16 19 src = fetchPypi { 17 - inherit pname version; 18 - hash = "sha256-lvC6oAXQR4u7s+11n6NgQExPc9yrq3JAmmXtuOw22tI="; 20 + pname = "dvc_ssh"; 21 + inherit version; 22 + hash = "sha256-ld6uaAIA+8lHK/TjKtrjtmGKj5847SBMYYvKKN+MkS4="; 19 23 }; 20 24 21 25 pythonRemoveDeps = [ ··· 27 23 "dvc" 28 24 ]; 29 25 30 - nativeBuildInputs = [ 31 - setuptools-scm 32 - ]; 26 + build-system = [ setuptools-scm ]; 33 27 34 - propagatedBuildInputs = [ 28 + dependencies = [ 35 29 bcrypt 36 30 dvc-objects 37 31 sshfs 38 32 ]; 33 + 34 + optional-dependencies = { 35 + gssapi = [ sshfs ]; 36 + }; 39 37 40 38 # bcrypt is enabled for sshfs in nixpkgs 41 39 postPatch = '' ··· 53 47 # ]; 54 48 55 49 meta = with lib; { 56 - description = "ssh plugin for dvc"; 50 + description = "SSH plugin for dvc"; 57 51 homepage = "https://pypi.org/project/dvc-ssh/${version}"; 58 52 changelog = "https://github.com/iterative/dvc-ssh/releases/tag/${version}"; 59 53 license = licenses.asl20;