python3Packages.starlingbank: init at 3.2 (#432706)

This commit is contained in:
Martin Weinelt
2025-08-11 13:10:04 +02:00
committed by GitHub
3 changed files with 38 additions and 1 deletions
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchPypi,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "starlingbank";
version = "3.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-pqWnRyCAc50KQmbqYq9Mje+PWXCFmTAjs8jA13YM0nA=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "starlingbank" ];
meta = {
description = "An unofficial python package that provides access to parts of the Starling bank API";
homepage = "https://github.com/Dullage/starlingbank";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -5626,7 +5626,8 @@
];
"starlingbank" =
ps: with ps; [
]; # missing inputs: starlingbank
starlingbank
];
"starlink" =
ps: with ps; [
starlink-grpc-core
+2
View File
@@ -17330,6 +17330,8 @@ self: super: with self; {
starline = callPackage ../development/python-modules/starline { };
starlingbank = callPackage ../development/python-modules/starlingbank { };
starlink-grpc-core = callPackage ../development/python-modules/starlink-grpc-core { };
stashy = callPackage ../development/python-modules/stashy { };