1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00
nixpkgs/pkgs/applications/office/watson/default.nix

29 lines
684 B
Nix
Raw Normal View History

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