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: 7394bfbcd1c5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1e9dee0b3001
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 1, 2021

  1. Copy the full SHA
    b541bc1 View commit details
  2. Merge pull request #108127 from r-ryantm/auto-update/python3.7-abodepy

    python37Packages.abodepy: 1.2.0 -> 1.2.1
    ryantm authored Jan 1, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1e9dee0 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/abodepy/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/abodepy/default.nix
Original file line number Diff line number Diff line change
@@ -3,15 +3,15 @@

buildPythonPackage rec {
pname = "abodepy";
version = "1.2.0";
version = "1.2.1";

disabled = !isPy3k;

src = fetchFromGitHub {
owner = "MisterWil";
repo = pname;
rev = "v${version}";
sha256 = "0m2cm90yy7fq7yrjyd999m48gqri65ifi7f6hc0s3pv2hfj89yj0";
sha256 = "0n8gczsml6y6anin1zi8j33sjk1bv9ka02zxpksn2fi1v1h0smap";
};

propagatedBuildInputs = [ colorlog lomond requests ];