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

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.esphome-dashboard-api: 1.2.3 -> 1.3.0

https://github.com/esphome/dashboard-api/releases/tag/1.3.0

+8 -14
+8 -14
pkgs/development/python-modules/esphome-dashboard-api/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 5 setuptools, 6 - wheel, 7 6 aiohttp, 7 + orjson, 8 8 }: 9 9 10 10 buildPythonPackage rec { 11 11 pname = "esphome-dashboard-api"; 12 - version = "1.2.3"; 13 - format = "pyproject"; 12 + version = "1.3.0"; 13 + pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "esphome"; 17 17 repo = "dashboard-api"; 18 18 tag = version; 19 - hash = "sha256-RFfS0xzRXoM6ETXmviiMPxffPzspjTqpkvHOlTJXN9g="; 19 + hash = "sha256-b3PnMzlA9N8NH6R5ed6wf5QF45i887iQk2QgH7e755k="; 20 20 }; 21 21 22 - postPatch = '' 23 - substituteInPlace pyproject.toml \ 24 - --replace "setuptools~=65.6" "setuptools" \ 25 - --replace "wheel~=0.37.1" "wheel" 26 - ''; 22 + build-system = [ setuptools ]; 27 23 28 - nativeBuildInputs = [ 29 - setuptools 30 - wheel 24 + dependencies = [ 25 + aiohttp 26 + orjson 31 27 ]; 32 - 33 - propagatedBuildInputs = [ aiohttp ]; 34 28 35 29 doCheck = false; # no tests 36 30