2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, isPy3k, fetchFromGitHub, fetchpatch, substituteAll
|
2020-11-24 15:29:28 +00:00
|
|
|
, python, util-linux, pygit2, gitMinimal, git-annex, cacert
|
2018-06-21 22:14:02 +01:00
|
|
|
}:
|
2017-10-14 11:54:31 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "git-annex-adapter";
|
2020-09-26 22:26:56 +01:00
|
|
|
version = "0.2.2";
|
2017-10-14 11:54:31 +01:00
|
|
|
|
2018-04-07 19:28:12 +01:00
|
|
|
disabled = !isPy3k;
|
2017-10-14 11:54:31 +01:00
|
|
|
|
2018-12-18 13:44:37 +00:00
|
|
|
# No tests in PyPI tarball
|
2017-10-14 11:54:31 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "alpernebbi";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-09-26 22:26:56 +01:00
|
|
|
sha256 = "0666vqspgnvmfs6j3kifwyxr6zmxjs0wlwis7br4zcq0gk32zgdx";
|
2017-10-14 11:54:31 +01:00
|
|
|
};
|
|
|
|
|
2019-02-20 14:05:16 +00:00
|
|
|
patches = [
|
2021-01-20 10:29:41 +00:00
|
|
|
# fix tests with recent versions of git-annex
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/alpernebbi/git-annex-adapter/commit/6c210d828e8a57b12c716339ad1bf15c31cd4a55.patch";
|
|
|
|
sha256 = "17kp7pnm9svq9av4q7hfic95xa1w3z02dnr8nmg14sjck2rlmqsi";
|
|
|
|
})
|
2019-02-20 14:05:16 +00:00
|
|
|
(substituteAll {
|
|
|
|
src = ./git-annex-path.patch;
|
|
|
|
gitAnnex = "${git-annex}/bin/git-annex";
|
|
|
|
})
|
|
|
|
];
|
2017-10-14 11:54:31 +01:00
|
|
|
|
2018-04-07 19:28:12 +01:00
|
|
|
checkInputs = [
|
2019-02-20 14:05:16 +00:00
|
|
|
gitMinimal
|
2020-11-24 15:29:28 +00:00
|
|
|
util-linux # `rev` is needed in tests/test_process.py
|
2017-10-14 11:54:31 +01:00
|
|
|
];
|
|
|
|
|
2020-09-26 22:26:56 +01:00
|
|
|
propagatedBuildInputs = [ pygit2 cacert ];
|
2017-10-14 11:54:31 +01:00
|
|
|
|
|
|
|
checkPhase = ''
|
2019-02-20 14:05:16 +00:00
|
|
|
${python.interpreter} -m unittest
|
2017-10-14 11:54:31 +01:00
|
|
|
'';
|
2020-09-26 22:26:56 +01:00
|
|
|
pythonImportsCheck = [ "git_annex_adapter" ];
|
2017-10-14 11:54:31 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/alpernebbi/git-annex-adapter";
|
2017-10-14 11:54:31 +01:00
|
|
|
description = "Call git-annex commands from Python";
|
|
|
|
license = licenses.gpl3Plus;
|
2019-12-26 14:13:48 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2017-10-14 11:54:31 +01:00
|
|
|
};
|
|
|
|
}
|