depot/third_party/nixpkgs/pkgs/development/python-modules/taxi/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

45 lines
785 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, appdirs
, requests
, click
, setuptools
, pytestCheckHook
, freezegun
}:
buildPythonPackage rec {
pname = "taxi";
version = "6.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "sephii";
repo = "taxi";
rev = version;
hash = "sha256-wtLlO/W+39kTPjb2U6c54bxWxAQB7CxGxBh8gur+RCQ=";
};
propagatedBuildInputs = [
appdirs
requests
click
setuptools
];
nativeCheckInputs = [
freezegun
pytestCheckHook
];
pythonImportsCheck = [ "taxi" ];
meta = with lib; {
homepage = "https://github.com/sephii/taxi/";
description = "Timesheeting made easy";
mainProgram = "taxi";
license = licenses.wtfpl;
maintainers = with maintainers; [ jocelynthode ];
};
}