python3Packages.fiscalyear: init at 0.4.0
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user