mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 21:14:52 +00:00
python3Packages.ago: init at 0.0.95
This commit is contained in:
parent
9d40e8863f
commit
047166e735
40
pkgs/development/python-modules/ago/default.nix
Normal file
40
pkgs/development/python-modules/ago/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user