44 lines
998 B
Nix
44 lines
998 B
Nix
{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub, substituteAll
|
|
, python, utillinux, pygit2, gitMinimal, git-annex
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "git-annex-adapter";
|
|
version = "0.2.1";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
# No tests in PyPI tarball
|
|
src = fetchFromGitHub {
|
|
owner = "alpernebbi";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "146q1jhcfc7f96ajkhjffskkljk2xzivs5ih5clb8qx0sh7mj097";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./git-annex-path.patch;
|
|
gitAnnex = "${git-annex}/bin/git-annex";
|
|
})
|
|
];
|
|
|
|
checkInputs = [
|
|
gitMinimal
|
|
utillinux # `rev` is needed in tests/test_process.py
|
|
];
|
|
|
|
propagatedBuildInputs = [ pygit2 ];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m unittest
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/alpernebbi/git-annex-adapter;
|
|
description = "Call git-annex commands from Python";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ dotlambda ma27 ];
|
|
};
|
|
}
|