mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
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 ];
|
|
};
|
|
}
|