Merge pull request #226027 from bcdarwin/unbreak-datalad

datalad: 0.16.5 -> 0.18.3; unbreak

authored by

Weijia Wang and committed by
GitHub
dac8b237 5f93ecea

+9 -3
+9 -3
pkgs/applications/version-management/datalad/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, installShellFiles, python3, git }: 1 + { lib, stdenv, fetchFromGitHub, installShellFiles, python3, git, git-annex }: 2 2 3 3 python3.pkgs.buildPythonApplication rec { 4 4 pname = "datalad"; 5 - version = "0.16.5"; 5 + version = "0.18.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "datalad"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-F5UFW0/XqntrHclpj3TqoAwuHJbiiv5a7/4MnFoJ1dE="; 11 + hash = "sha256-vqO37o5NxQk+gHfvhM1I2ea9/q9ZaLWkDEyPYJKEPcs"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ installShellFiles git ]; ··· 24 24 patool 25 25 tqdm 26 26 annexremote 27 + looseversion 28 + setuptools 29 + git-annex 27 30 28 31 # downloaders-extra 29 32 # requests-ftp # not in nixpkgs yet ··· 66 69 installShellCompletion --cmd datalad \ 67 70 --bash <($out/bin/datalad shell-completion) \ 68 71 --zsh <($out/bin/datalad shell-completion) 72 + wrapProgram $out/bin/datalad --prefix PYTHONPATH : "$PYTHONPATH" 69 73 ''; 70 74 71 75 # no tests 72 76 doCheck = false; 77 + 78 + pythonImportsCheck = [ "datalad" ]; 73 79 74 80 meta = with lib; { 75 81 description = "Keep code, data, containers under control with git and git-annex";