mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
35 lines
602 B
Nix
35 lines
602 B
Nix
{ lib
|
|
, 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;
|
|
};
|
|
|
|
}
|