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: c08f80839fc2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e10d98c05528
Choose a head ref
  • 5 commits
  • 6 files changed
  • 2 contributors

Commits on Mar 4, 2019

  1. python.pkgs.pyhomematic: 0.1.56 -> 0.1.57

    Robert Schütz committed Mar 4, 2019
    Copy the full SHA
    9cb1f6b View commit details
  2. python.pkgs.astral: improve checkPhase

    Robert Schütz committed Mar 4, 2019
    Copy the full SHA
    ceb5c0f View commit details
  3. Copy the full SHA
    dc39d02 View commit details

Commits on Mar 8, 2019

  1. home-assistant: 0.87.1 -> 0.89.1

    Robert Schütz committed Mar 8, 2019
    Copy the full SHA
    4594640 View commit details

Commits on Mar 11, 2019

  1. Merge pull request #57012 from dotlambda/home-assistant-0.89

     home-assistant: 0.87.1 -> 0.89.1
    dotlambda authored Mar 11, 2019
    Copy the full SHA
    e10d98c View commit details
2 changes: 0 additions & 2 deletions pkgs/development/python-modules/astral/default.nix
Original file line number Diff line number Diff line change
@@ -13,8 +13,6 @@ buildPythonPackage rec {

checkInputs = [ pytest ];
checkPhase = ''
# https://github.com/sffjunkie/astral/pull/26
touch src/test/.api_key
py.test -m "not webtest"
'';

4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pyhomematic/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

buildPythonPackage rec {
pname = "pyhomematic";
version = "0.1.56";
version = "0.1.57";

disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "ca9f222b99d80be4b7ef8a4427ab55368d14914a0516623e66d1da7563919169";
sha256 = "a33c2feee6a945d0b3e52962b31e340b806c8602bd13b0b2875ce1b24ddfe226";
};

# PyPI tarball does not include tests/ directory
Loading