32 lines
610 B
Nix
32 lines
610 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
pytestCheckHook,
|
||
|
setuptools,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "ago";
|
||
|
version = "0.0.95";
|
||
|
pyproject = true;
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-0gEPXqw99UTsSOwRYQLgaFkaNFsaWA8ylz24pQX8p0Q=";
|
||
|
};
|
||
|
|
||
|
build-system = [ setuptools ];
|
||
|
|
||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||
|
|
||
|
pythonImportsCheck = [ "ago" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Human Readable Time Deltas";
|
||
|
homepage = "https://git.unturf.com/python/ago";
|
||
|
license = licenses.publicDomain;
|
||
|
maintainers = with maintainers; [ vizid ];
|
||
|
};
|
||
|
}
|