nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #251096 from tjni/python-matter-server

python3.pkgs.python-matter-server: relax setuptools dependency

authored by

Martin Weinelt and committed by
GitHub
18a3b4a2 093f591d

+12
+12
pkgs/development/python-modules/python-matter-server/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , pythonOlder 5 6 6 7 # build 7 8 , setuptools 9 + , wheel 8 10 9 11 # propagates 10 12 , aiohttp ··· 41 39 hash = "sha256-t++7jQreibGpJRjJawicxjFIye5X6R1dpFqiM6yvRf0="; 42 40 }; 43 41 42 + patches = [ 43 + # https://github.com/home-assistant-libs/python-matter-server/pull/379 44 + (fetchpatch { 45 + name = "relax-setuptools-dependency.patch"; 46 + url = "https://github.com/home-assistant-libs/python-matter-server/commit/1bbc945634db92ea081051645b03c3d9c358fb15.patch"; 47 + hash = "sha256-kTu1+IwDrcdqelyK/vfhxw8MQBis5I1jag7YTytKQhs="; 48 + }) 49 + ]; 50 + 44 51 nativeBuildInputs = [ 45 52 setuptools 53 + wheel 46 54 ]; 47 55 48 56 propagatedBuildInputs = [