Merge pull request #179375 from jocelynthode/add/taxi

taxi: init at 6.1.1
This commit is contained in:
legendofmiracles 2022-07-16 08:46:42 -06:00 committed by GitHub
commit 39f99e4722
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 47 additions and 0 deletions

View File

@ -6121,6 +6121,12 @@
githubId = 60272884;
name = "Jonathan Jeppener-Haltenhoff";
};
jocelynthode = {
email = "jocelyn.thode@gmail.com";
github = "jocelynthode";
githubId = 3967312;
name = "Jocelyn Thode";
};
joelancaster = {
email = "joe.a.lancas@gmail.com";
github = "JoeLancaster";

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

@ -29098,6 +29098,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 { };