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