depot/third_party/nixpkgs/pkgs/development/python-modules/taskw/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

41 lines
891 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, nose
, tox
, six
, dateutil
, kitchen
, pytz
, pkgs
}:
buildPythonPackage rec {
version = "1.3.0";
pname = "taskw";
src = fetchPypi {
inherit pname version;
sha256 = "7673d80b3d5bace5b35eb71f5035e313a92daab6e437694128d8ce7dcdaf66fb";
};
patches = [ ./use-template-for-taskwarrior-install-path.patch ];
postPatch = ''
substituteInPlace taskw/warrior.py \
--replace '@@taskwarrior@@' '${pkgs.taskwarrior}'
'';
# https://github.com/ralphbean/taskw/issues/98
doCheck = false;
buildInputs = [ nose pkgs.taskwarrior tox ];
propagatedBuildInputs = [ six dateutil kitchen pytz ];
meta = with lib; {
homepage = "https://github.com/ralphbean/taskw";
description = "Python bindings for your taskwarrior database";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ pierron ];
};
}