python3Packages.starlingbank: init at 3.2

This commit is contained in:
Jamie Magee
2025-08-10 22:45:20 -07:00
parent 59ca61e5a8
commit ed8c0bf5bf
2 changed files with 36 additions and 0 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 ];
};
}
+2
View File
@@ -17322,6 +17322,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 { };