python3Packages.fiscalyear: init at 0.4.0

This commit is contained in:
Robert Schütz
2025-12-01 22:32:10 -08:00
parent 35f9cb43d0
commit f9dd7635e7
2 changed files with 36 additions and 0 deletions
@@ -0,0 +1,34 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools,
}:
buildPythonPackage rec {
pname = "fiscalyear";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "adamjstewart";
repo = "fiscalyear";
tag = "v${version}";
hash = "sha256-2wejJRTmVHWiM8LoodyaOyMbMqCx5It6JHCQUWpGsxs=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "fiscalyear" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/adamjstewart/fiscalyear/releases/tag/${src.tag}";
description = "Utilities for managing the fiscal calendar";
homepage = "https://github.com/adamjstewart/fiscalyear";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
}
+2
View File
@@ -5378,6 +5378,8 @@ self: super: with self; {
first = callPackage ../development/python-modules/first { };
fiscalyear = callPackage ../development/python-modules/fiscalyear { };
fissix = callPackage ../development/python-modules/fissix { };
fitbit = callPackage ../development/python-modules/fitbit { };