python3Packages.ago: init at 0.0.95

This commit is contained in:
Radik Islamov 2024-03-08 06:45:56 +05:00
parent 9d40e8863f
commit 047166e735
No known key found for this signature in database
GPG Key ID: D0B0CBDAF7A902DC
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "ago";
version = "0.0.95";
pyproject = true;
disabled = pythonOlder "3.3";
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 ];
};
}

View File

@ -123,6 +123,8 @@ self: super: with self; {
agent-py = callPackage ../development/python-modules/agent-py { };
ago = callPackage ../development/python-modules/ago { };
aggdraw = callPackage ../development/python-modules/aggdraw { };
aigpy = callPackage ../development/python-modules/aigpy { };