depot/third_party/nixpkgs/pkgs/development/python-modules/taxi/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 lines
796 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 ];
};
}