2017-12-31 13:13:21 +00:00
|
|
|
{ stdenv, pythonPackages, fetchpatch }:
|
2017-05-04 16:11:36 +00:00
|
|
|
|
2017-12-31 13:13:21 +00:00
|
|
|
with pythonPackages;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
2019-07-01 03:18:56 +00:00
|
|
|
pname = "watson";
|
2019-09-29 10:42:12 +00:00
|
|
|
version = "1.8.0";
|
2017-05-04 16:11:36 +00:00
|
|
|
|
2017-12-31 13:13:21 +00:00
|
|
|
src = fetchPypi {
|
2019-07-01 03:18:56 +00:00
|
|
|
inherit version;
|
|
|
|
pname = "td-watson";
|
2019-09-29 10:42:12 +00:00
|
|
|
sha256 = "1ip66jhbcqifdw1avbhngwym0vv7fsqxgbph11da5wlqwfwp060n";
|
2017-05-04 16:11:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkPhase = ''
|
2019-07-01 03:20:13 +00:00
|
|
|
pytest -vs tests
|
2017-05-04 16:11:36 +00:00
|
|
|
'';
|
2017-12-31 13:13:21 +00:00
|
|
|
|
|
|
|
checkInputs = [ py pytest pytest-datafiles mock pytest-mock pytestrunner ];
|
|
|
|
propagatedBuildInputs = [ requests click arrow ];
|
2017-05-04 16:11:36 +00: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 01:46:08 +00:00
|
|
|
maintainers = with maintainers; [ mguentner nathyong ] ;
|
2017-05-04 16:11:36 +00:00
|
|
|
};
|
2017-12-31 13:13:21 +00:00
|
|
|
}
|