mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
44 lines
734 B
Nix
44 lines
734 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, appdirs
|
|
, requests
|
|
, click
|
|
, setuptools
|
|
, pytestCheckHook
|
|
, freezegun
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "taxi";
|
|
version = "6.2.0";
|
|
|
|
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";
|
|
license = licenses.wtfpl;
|
|
maintainers = with maintainers; [ jocelynthode ];
|
|
};
|
|
}
|