python312Packages.pydanfossair: 0.2.0 -> 0.3.0 (#356124)

This commit is contained in:
Fabian Affolter 2024-11-15 22:46:09 +01:00 committed by GitHub
commit 075fb03a07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,27 +2,32 @@
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pydanfossair"; pname = "pydanfossair";
version = "0.2.0"; version = "0.3.0";
format = "setuptools"; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "JonasPed"; owner = "JonasPed";
repo = "pydanfoss-air"; repo = "pydanfoss-air";
rev = "v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-WTRiEQbd3wwNAz1gk0rS3khy6lg61rcGZQTMlBc0uO8="; hash = "sha256-ZTairxQbvijNiSomDoeZtmL/Hn3ce1Z5TEOf+0C8cYg=";
}; };
build-system = [ setuptools ];
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "pydanfossair" ]; pythonImportsCheck = [ "pydanfossair" ];
meta = with lib; { meta = with lib; {
description = "Python interface for Danfoss Air HRV systems"; description = "Python interface for Danfoss Air HRV systems";
homepage = "https://github.com/JonasPed/pydanfoss-air"; homepage = "https://github.com/JonasPed/pydanfoss-air";
changelog = "https://github.com/JonasPed/pydanfoss-air/releases/tag/v${version}";
license = with licenses; [ asl20 ]; license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };