biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / ago / default.nix
blobba9fb23a2ce936a7557eef949bc9738e3c2786a3
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "ago";
11   version = "0.0.95";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-0gEPXqw99UTsSOwRYQLgaFkaNFsaWA8ylz24pQX8p0Q=";
17   };
19   build-system = [ setuptools ];
21   nativeCheckInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "ago" ];
25   meta = with lib; {
26     description = "Human Readable Time Deltas";
27     homepage = "https://git.unturf.com/python/ago";
28     license = licenses.publicDomain;
29     maintainers = with maintainers; [ vizid ];
30   };