python312Packages.aiopulse: 0.4.5 -> 0.4.6

Changelog: https://github.com/atmurray/aiopulse/releases/tag/v0.4.6
This commit is contained in:
Fabian Affolter 2024-09-02 08:12:12 +02:00
parent abd37c51b2
commit 10f75fda64

View File

@ -4,24 +4,24 @@
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
hatchling,
}:
buildPythonPackage rec {
pname = "aiopulse";
version = "0.4.5";
version = "0.4.6";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-yrltqnePNnNwsVGkfXgtrtL/FuazRvmoVL4L0H4j4Bg=";
hash = "sha256-juubQHAAQYN9mSssfF3prYByy+wxscZFxwgspJU8zYA=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ hatchling ];
propagatedBuildInputs = [ async-timeout ];
dependencies = [ async-timeout ];
# Tests are not present
doCheck = false;