aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/git-annex-adapter/default.nix
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/git-annex-adapter/default.nix
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/git-annex-adapter/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/git-annex-adapter/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/git-annex-adapter/default.nix b/nixpkgs/pkgs/development/python-modules/git-annex-adapter/default.nix
new file mode 100644
index 00000000000..ec58825878a
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/git-annex-adapter/default.nix
@@ -0,0 +1,43 @@
+{ 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 ];
+ };
+}