diff options
author | Nick Cao <nickcao@nichi.co> | 2023-12-27 11:03:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-27 11:03:35 -0500 |
commit | 1dc415546ed667ad9b4615fbe87c21535ac711d1 (patch) | |
tree | b8d526472664a7f2b3313c8cf98bba6e702f372a /pkgs | |
parent | 204b59d01b835978109d21022f103680f1277e4b (diff) | |
parent | c3fb7e04a03e8f3a8adf50c0cfba5382415b1810 (diff) |
Merge pull request #277112 from fabaff/aiopulse-bump
python311Packages.aiopulse: 0.4.4 -> 0.4.5
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/development/python-modules/aiopulse/default.nix | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/aiopulse/default.nix b/pkgs/development/python-modules/aiopulse/default.nix index df93e9f8e1f20..3a2c11417be66 100644 --- a/pkgs/development/python-modules/aiopulse/default.nix +++ b/pkgs/development/python-modules/aiopulse/default.nix @@ -1,27 +1,32 @@ { lib +, async-timeout , buildPythonPackage , fetchPypi -, async-timeout , pythonOlder +, setuptools }: buildPythonPackage rec { pname = "aiopulse"; - version = "0.4.4"; - format = "setuptools"; + version = "0.4.5"; + pyproject = true; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-JbdJbkzd55KeM3Sf1ExvMuHRKNu5VAvGG4y+wkMS0Wo="; + hash = "sha256-yrltqnePNnNwsVGkfXgtrtL/FuazRvmoVL4L0H4j4Bg="; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ async-timeout ]; - # tests are not present + # Tests are not present doCheck = false; pythonImportsCheck = [ |