python3Packages.typedmonarchmoney: init at 0.4.4

This commit is contained in:
Jamie Magee
2025-08-07 23:00:09 -07:00
parent c24808b933
commit 087a57b613
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
monarchmoney,
rich,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "typedmonarchmoney";
version = "0.4.4";
pyproject = true;
src = fetchFromGitHub {
owner = "jeeftor";
repo = "monarchmoney-typed";
tag = "v${version}";
hash = "sha256-AM6d7oecKf5aG8zO3I6BGY3/rgtrdzNabCwX8AOlEs4=";
};
build-system = [ poetry-core ];
dependencies = [
monarchmoney
rich
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "typedmonarchmoney" ];
meta = {
description = "Typed wrapper around the Monarch Money API";
homepage = "https://github.com/jeeftor/monarchmoney-typed";
changelog = "https://github.com/jeeftor/monarchmoney-typed/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -18522,6 +18522,8 @@ self: super: with self; {
typed-settings = callPackage ../development/python-modules/typed-settings { };
typedmonarchmoney = callPackage ../development/python-modules/typedmonarchmoney { };
typedunits = callPackage ../development/python-modules/typedunits { };
typeguard = callPackage ../development/python-modules/typeguard { };