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

Commits on May 7, 2018

  1. Copy the full SHA
    9592853 View commit details
  2. Copy the full SHA
    c7d735a View commit details
  3. Copy the full SHA
    509a340 View commit details
  4. Copy the full SHA
    11ad518 View commit details
  5. Copy the full SHA
    1a7a886 View commit details
19 changes: 19 additions & 0 deletions pkgs/development/python-modules/aiohue/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, aiohttp }:

buildPythonPackage rec {
pname = "aiohue";
version = "1.3.1";

src = fetchPypi {
inherit pname version;
sha256 = "05b2fj8pzbij8hglx6p5ckfx0h1b7wcfpys306l853vp56d882yh";
};

propagatedBuildInputs = [ aiohttp ];

meta = with lib; {
description = "asyncio package to talk to Philips Hue";
homepage = https://github.com/balloob/aiohue;
license = licenses.asl20;
};
}
19 changes: 19 additions & 0 deletions pkgs/development/python-modules/coinmarketcap/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, requests-cache }:

buildPythonPackage rec {
pname = "coinmarketcap";
version = "4.2.1";

src = fetchPypi {
inherit pname version;
sha256 = "0bk530cmfqri84m9386ydn3f89gq23nxylvnl523gr5589vw54bj";
};

propagatedBuildInputs = [ requests-cache ];

meta = with lib; {
description = "A python wrapper around the https://coinmarketcap.com API.";
homepage = https://github.com/barnumbirr/coinmarketcap;
license = licenses.asl20;
};
}
19 changes: 19 additions & 0 deletions pkgs/development/python-modules/pymvglive/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, requests }:

buildPythonPackage rec {
pname = "PyMVGLive";
version = "1.1.4";

src = fetchPypi {
inherit pname version;
sha256 = "0sh4xm74im9qxzpbrlc5h1vnpgvpybnpvdcav1iws0b561zdr08c";
};

propagatedBuildInputs = [ requests ];

meta = with lib; {
description = "get live-data from mvg-live.de";
homepage = https://github.com/pc-coholic/PyMVGLive;
license = licenses.free;
};
}
19 changes: 19 additions & 0 deletions pkgs/development/python-modules/pyowm/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, requests }:

buildPythonPackage rec {
pname = "pyowm";
version = "2.8.0";

src = fetchPypi {
inherit pname version;
sha256 = "0y2r322pcamabar70513pbyiq26x33l1aq9cim6k30lk9p4aq310";
};

propagatedBuildInputs = [ requests ];

meta = with lib; {
description = "A Python wrapper around the OpenWeatherMap web API";
homepage = https://pyowm.readthedocs.io/;
license = licenses.mit;
};
}
10 changes: 5 additions & 5 deletions pkgs/servers/home-assistant/component-packages.nix
Original file line number Diff line number Diff line change
@@ -116,7 +116,7 @@
"homematic" = ps: with ps; [ pyhomematic ];
"homematicip_cloud" = ps: with ps; [ ];
"http" = ps: with ps; [ aiohttp-cors ];
"hue" = ps: with ps; [ ];
"hue" = ps: with ps; [ aiohue ];
"ifttt" = ps: with ps; [ ];
"ihc" = ps: with ps; [ ];
"image_processing.dlib_face_detect" = ps: with ps; [ face_recognition ];
@@ -285,7 +285,7 @@
"sensor.bme680" = ps: with ps; [ ];
"sensor.broadlink" = ps: with ps; [ ];
"sensor.buienradar" = ps: with ps; [ ];
"sensor.coinmarketcap" = ps: with ps; [ ];
"sensor.coinmarketcap" = ps: with ps; [ coinmarketcap ];
"sensor.cpuspeed" = ps: with ps; [ ];
"sensor.crimereports" = ps: with ps; [ ];
"sensor.cups" = ps: with ps; [ pycups ];
@@ -335,12 +335,12 @@
"sensor.miflora" = ps: with ps; [ ];
"sensor.modem_callerid" = ps: with ps; [ ];
"sensor.mopar" = ps: with ps; [ ];
"sensor.mvglive" = ps: with ps; [ ];
"sensor.mvglive" = ps: with ps; [ PyMVGLive ];
"sensor.nederlandse_spoorwegen" = ps: with ps; [ ];
"sensor.neurio_energy" = ps: with ps; [ ];
"sensor.nut" = ps: with ps; [ ];
"sensor.openevse" = ps: with ps; [ ];
"sensor.openweathermap" = ps: with ps; [ ];
"sensor.openweathermap" = ps: with ps; [ pyowm ];
"sensor.otp" = ps: with ps; [ ];
"sensor.plex" = ps: with ps; [ ];
"sensor.pocketcasts" = ps: with ps; [ ];
@@ -453,7 +453,7 @@
"weather.buienradar" = ps: with ps; [ ];
"weather.darksky" = ps: with ps; [ ];
"weather.metoffice" = ps: with ps; [ ];
"weather.openweathermap" = ps: with ps; [ ];
"weather.openweathermap" = ps: with ps; [ pyowm ];
"weather.yweather" = ps: with ps; [ yahooweather ];
"wemo" = ps: with ps; [ ];
"wink" = ps: with ps; [ ];
8 changes: 8 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -18253,6 +18253,14 @@ EOF
h11 = callPackage ../development/python-modules/h11 { };

python-docx = callPackage ../development/python-modules/python-docx { };

aiohue = callPackage ../development/python-modules/aiohue { };

PyMVGLive = callPackage ../development/python-modules/pymvglive { };

coinmarketcap = callPackage ../development/python-modules/coinmarketcap { };

pyowm = callPackage ../development/python-modules/pyowm { };
});

in fix' (extends overrides packages)