taxi: init at 6.1.1

This commit is contained in:
Jocelyn Thode 2022-06-28 06:35:01 +02:00
parent 35f11c1fb9
commit 55a75ebc44
3 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, appdirs
, requests
, click
, setuptools
, backends ? [ ]
}:
buildPythonPackage rec {
pname = "taxi";
version = "6.1.1";
src = fetchPypi {
inherit version;
pname = "taxi";
sha256 = "b2562ed58bd6eae7896f4f8e48dbee9845cd2d452b26dd15c26f839b4864cb02";
};
# No tests in pypy package
doCheck = false;
propagatedBuildInputs = [
appdirs
requests
click
setuptools
] ++ backends;
meta = with lib; {
homepage = "https://github.com/sephii/taxi/";
description = "Timesheeting made easy";
license = licenses.wtfpl;
maintainers = with maintainers; [ jocelynthode ];
};
}

View File

@ -29051,6 +29051,8 @@ with pkgs;
taxi = callPackage ../applications/networking/ftp/taxi { };
taxi-cli = with python3Packages; toPythonApplication taxi;
librep = callPackage ../development/libraries/librep { };
rep-gtk = callPackage ../development/libraries/rep-gtk { };

View File

@ -10380,6 +10380,8 @@ in {
tatsu = callPackage ../development/python-modules/tatsu { };
taxi = callPackage ../development/python-modules/taxi { };
tblib = callPackage ../development/python-modules/tblib { };
tbm-utils = callPackage ../development/python-modules/tbm-utils { };