Skip to content

Commit

Permalink
Merge pull request #326200 from fabaff/homeconnect-bump
Browse files Browse the repository at this point in the history
python312Packages.homeconnect: 0.7.4 -> 0.8.0
  • Loading branch information
mweinelt authored Jul 12, 2024
2 parents 8d75ee9 + 953ace5 commit e3aa0f6
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions pkgs/development/python-modules/homeconnect/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,25 @@
requests-oauthlib,
pythonOlder,
setuptools,
six,
}:

buildPythonPackage rec {
pname = "homeconnect";
version = "0.7.4";
format = "pyproject";
version = "0.8.0";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
hash = "sha256-lkal6Dy4cRRZ893I3/jyQ3+sDZMrHN0UMGff0ab4pvk=";
hash = "sha256-W475a+TlGiKRR1EDYiFVmApmQfmft85iBQLRnbEmcuA=";
};

nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];

propagatedBuildInputs = [
dependencies = [
requests
requests-oauthlib
six
];

# Project has no tests
Expand All @@ -38,7 +36,7 @@ buildPythonPackage rec {
description = "Python client for the BSH Home Connect REST API";
homepage = "https://github.com/DavidMStraub/homeconnect";
changelog = "https://github.com/DavidMStraub/homeconnect/releases/tag/v${version}";
license = with licenses; [ mit ];
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

0 comments on commit e3aa0f6

Please sign in to comment.