lol

Merge pull request #332717 from dotlambda/python3Packages.miniaudio

python312Packages.miniaudio: 1.60 -> 1.61

authored by

Nick Cao and committed by
GitHub
da6310f7 4e20e8da

+6 -12
+2 -2
pkgs/development/python-modules/miniaudio/default.nix
··· 24 24 in 25 25 buildPythonPackage rec { 26 26 pname = "miniaudio"; 27 - version = "1.60"; 27 + version = "1.61"; 28 28 pyproject = true; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "irmen"; 32 32 repo = "pyminiaudio"; 33 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-Bw9zq98RJmfp6KoZ43SNsh7vVrhUe6GNzcM4flxPJ60="; 34 + hash = "sha256-H3o2IWGuMqLrJTzQ7w636Ito6f57WBtMXpXXzrZ7UD8="; 35 35 }; 36 36 37 37 postPatch = ''
+4 -10
pkgs/development/python-modules/pyatv/default.nix
··· 44 44 45 45 postPatch = '' 46 46 substituteInPlace setup.py \ 47 - --replace "pytest-runner" "" 47 + --replace-fail "pytest-runner" "" 48 48 ''; 49 49 50 50 pythonRelaxDeps = [ ··· 62 62 "zeroconf" 63 63 ]; 64 64 65 - nativeBuildInputs = [ 66 - setuptools 67 - ]; 65 + build-system = [ setuptools ]; 68 66 69 - propagatedBuildInputs = [ 67 + dependencies = [ 70 68 aiohttp 71 69 async-timeout 72 70 chacha20poly1305-reuseable ··· 93 91 ]; 94 92 95 93 disabledTests = 96 - [ 97 - # https://github.com/postlund/pyatv/issues/2307 98 - "test_zeroconf_service_published" 99 - ] 100 - ++ lib.optionals (pythonAtLeast "3.12") [ 94 + lib.optionals (pythonAtLeast "3.12") [ 101 95 # https://github.com/postlund/pyatv/issues/2365 102 96 "test_simple_dispatch" 103 97 ]