nixpkgs-suyu/pkgs/applications/office/watson/default.nix

29 lines
696 B
Nix
Raw Normal View History

{ stdenv, pythonPackages, fetchpatch }:
2017-05-04 18:11:36 +02:00
with pythonPackages;
buildPythonApplication rec {
pname = "watson";
2019-07-01 03:46:08 +02:00
version = "1.7.0";
2017-05-04 18:11:36 +02:00
src = fetchPypi {
inherit version;
pname = "td-watson";
2019-07-01 03:46:08 +02:00
sha256 = "249313996751f32f38817d424cbf8d74956461df1439f0ee3a962fcc3c77225d";
2017-05-04 18:11:36 +02:00
};
checkPhase = ''
2019-07-01 05:20:13 +02:00
pytest -vs tests
2017-05-04 18:11:36 +02:00
'';
checkInputs = [ py pytest pytest-datafiles mock pytest-mock pytestrunner ];
propagatedBuildInputs = [ requests click arrow ];
2017-05-04 18:11:36 +02:00
meta = with stdenv.lib; {
homepage = https://tailordev.github.io/Watson/;
description = "A wonderful CLI to track your time!";
license = licenses.mit;
2019-07-01 03:46:08 +02:00
maintainers = with maintainers; [ mguentner nathyong ] ;
2017-05-04 18:11:36 +02:00
};
}