summary refs log tree commit diff
path: root/pkgs/development/python-modules/tarman/default.nix
blob: 682da22ced8a55ebb8e0be6919b3346d56243378 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, unittest2
, nose
, mock
, libarchive
}:

buildPythonPackage rec {
  version = "0.1.3";
  pname = "tarman";

  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0ri6gj883k042xaxa2d5ymmhbw2bfcxdzhh4bz7700ibxwxxj62h";
  };

  buildInputs = [ unittest2 nose mock ];
  propagatedBuildInputs = [ libarchive ];

  # tests are still failing
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/matejc/tarman";
    description = "Archive manager with curses interface";
    license = licenses.bsd0;
  };

}