mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 07:04:25 +00:00
python312Packages.aiopulse: 0.4.5 -> 0.4.6
Changelog: https://github.com/atmurray/aiopulse/releases/tag/v0.4.6
This commit is contained in:
parent
abd37c51b2
commit
10f75fda64
@ -4,24 +4,24 @@
|
|||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
setuptools,
|
hatchling,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "aiopulse";
|
pname = "aiopulse";
|
||||||
version = "0.4.5";
|
version = "0.4.6";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
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
|
# Tests are not present
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user