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

32 lines
684 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "timeago";
version = "1.0.16";
format = "setuptools";
src = fetchFromGitHub {
owner = "hustcc";
repo = pname;
rev = version;
sha256 = "sha256-PqORJKAVrjezU/yP2ky3gb1XsM8obDI3GQzi+mok/OM=";
};
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "test/testcase.py" ];
pythonImportsCheck = [ "timeago" ];
meta = with lib; {
description = "Python module to format past datetime output";
homepage = "https://github.com/hustcc/timeago";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}