Merge pull request #279796 from r-ryantm/auto-update/python311Packages.airthings-cloud

python311Packages.airthings-cloud: 0.1.0 -> 0.2.0
This commit is contained in:
Fabian Affolter 2024-01-11 10:44:28 +01:00 committed by GitHub
commit 9ded0da02f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "airthings-cloud";
version = "0.1.0";
version = "0.2.0";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -16,8 +16,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pyAirthings";
rev = version;
hash = "sha256-sqHNK6biSWso4uOYimzU7PkEn0uP5sHAaPGsS2vSMNY=";
rev = "refs/tags/${version}";
hash = "sha256-HdH/z5xsumOXU0ZYOUc8LHpjKGkfp5e5yGER+Nm8xB4=";
};
propagatedBuildInputs = [
@ -35,6 +35,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module for Airthings";
homepage = "https://github.com/Danielhiversen/pyAirthings";
changelog = "https://github.com/Danielhiversen/pyAirthings/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};