Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0389d5b14894
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 766fb6a51393
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 22, 2021

  1. python3Packages.aioshelly: 0.5.3 -> 0.5.4

    fabaff authored and Jonathan Ringer committed Jan 22, 2021
    Copy the full SHA
    766fb6a View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/development/python-modules/aioshelly/default.nix
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/aioshelly/default.nix
Original file line number Diff line number Diff line change
@@ -7,13 +7,13 @@

buildPythonPackage rec {
pname = "aioshelly";
version = "0.5.3";
version = "0.5.4";

src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = pname;
rev = version;
sha256 = "0177psqfib70vcvf3cg8plbwrilh770cqg8b547icdh5lnqv70b1";
sha256 = "sha256-EjzWx3wcmTfB3OmN0OB37K6wYKVO3HzGEIf+uihas8k=";
};

propagatedBuildInputs = [
@@ -28,6 +28,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library to control Shelly";
homepage = "https://github.com/home-assistant-libs/aioshelly";
changelog = "https://github.com/home-assistant-libs/aioshelly/releases/tag/${version}";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};