biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / timeago / default.nix
bloba1bd21cf16ae54d6a76da036b12ae93b0b8bbd71
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "timeago";
10   version = "1.0.16";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "hustcc";
15     repo = pname;
16     rev = version;
17     sha256 = "sha256-PqORJKAVrjezU/yP2ky3gb1XsM8obDI3GQzi+mok/OM=";
18   };
20   nativeCheckInputs = [ pytestCheckHook ];
22   pytestFlagsArray = [ "test/testcase.py" ];
24   pythonImportsCheck = [ "timeago" ];
26   meta = with lib; {
27     description = "Python module to format past datetime output";
28     homepage = "https://github.com/hustcc/timeago";
29     license = with licenses; [ mit ];
30     maintainers = with maintainers; [ fab ];
31   };