1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00

Merge pull request #158884 from dotlambda/esphome-callPackage

This commit is contained in:
Martin Weinelt 2022-02-10 12:51:19 +01:00 committed by GitHub
commit df7931b1e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,9 @@
{ lib
, python3
, buildPythonPackage
, fetchPypi
}:
with python3.pkgs; buildPythonPackage rec {
buildPythonPackage rec {
pname = "esphome-dashboard";
version = "20220116.0";

View file

@ -1,5 +1,4 @@
{ lib
, pkgs
, python3
, fetchFromGitHub
, fetchpatch
@ -11,7 +10,7 @@
let
python = python3.override {
packageOverrides = self: super: {
esphome-dashboard = pkgs.callPackage ./dashboard.nix {};
esphome-dashboard = self.callPackage ./dashboard.nix {};
};
};
in