diff options
Diffstat (limited to 'pkgs/development/python-modules/croniter/default.nix')
-rw-r--r-- | pkgs/development/python-modules/croniter/default.nix | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/croniter/default.nix b/pkgs/development/python-modules/croniter/default.nix index 8db83b619969..2437785db5b2 100644 --- a/pkgs/development/python-modules/croniter/default.nix +++ b/pkgs/development/python-modules/croniter/default.nix @@ -1,29 +1,28 @@ -{ lib -, buildPythonPackage -, fetchPypi -, setuptools -, pytestCheckHook -, python-dateutil -, pythonOlder -, pytz -, tzlocal +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools, + pytestCheckHook, + python-dateutil, + pythonOlder, + pytz, + tzlocal, }: buildPythonPackage rec { pname = "croniter"; - version = "2.0.3"; + version = "3.0.3"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-KHY605xAThWRQIdPCAEM/YoY9MKnzqHOc+lQakOAz8E="; + hash = "sha256-NBF+wXQfEKe9DsOtfY8OuPpFei/rm+MuaiJQ4ViVdmg="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ python-dateutil @@ -35,15 +34,13 @@ buildPythonPackage rec { tzlocal ]; - pythonImportsCheck = [ - "croniter" - ]; + pythonImportsCheck = [ "croniter" ]; meta = with lib; { description = "Library to iterate over datetime object with cron like format"; homepage = "https://github.com/kiorky/croniter"; changelog = "https://github.com/kiorky/croniter/blob/${version}/CHANGELOG.rst"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |