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

Commits on Aug 30, 2020

  1. homeassistant: 0.114.3 -> 0.114.4

    mweinelt authored and Jon committed Aug 30, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    67b7baa View commit details
  2. home-assistant: find packages that use extra_require

    mweinelt authored and Jon committed Aug 30, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    cc4fd57 View commit details
  3. pythonPackages.samsungctl: init at 0.7.1

    mweinelt authored and Jon committed Aug 30, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    60cb112 View commit details
  4. python3Packages.samsungtvws: init at 1.5.3

    mweinelt authored and Jon committed Aug 30, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    f31f620 View commit details
  5. python3Packages.pyipp: 0.10.1 -> 0.11.0

    Loosens dependency requirements and thus fixes build with bumped yarl
    version.
    mweinelt authored and Jon committed Aug 30, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    ed5c356 View commit details
  6. home-assistant: fix list spacing in component packages

    mweinelt authored and Jon committed Aug 30, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    e06e699 View commit details
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pyipp/default.nix
Original file line number Diff line number Diff line change
@@ -4,14 +4,14 @@

buildPythonPackage rec {
pname = "pyipp";
version = "0.10.1";
version = "0.11.0";
disabled = isPy27;

src = fetchFromGitHub {
owner = "ctalkington";
repo = "python-ipp";
rev = version;
sha256 = "0y9mkrx66f4m77jzfgdgmvlqismvimb6hm61j2va7zapm8dyabvr";
sha256 = "0ar3mkyfa9qi3av3885bvacpwlxh420if9ymdj8i4x06ymzc213d";
};

propagatedBuildInputs = [
29 changes: 29 additions & 0 deletions pkgs/development/python-modules/samsungctl/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib, buildPythonPackage, fetchPypi
, websocket_client
}:

buildPythonPackage rec {
pname = "samsungctl";
version = "0.7.1";

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

propagatedBuildInputs = [
websocket_client
];

# no tests
doCheck = false;

pythonImportsCheck = [ "samsungctl" ];

meta = with lib; {
description = "Remote control Samsung televisions via a TCP/IP connection";
homepage = "https://github.com/Ape/samsungctl";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}
36 changes: 36 additions & 0 deletions pkgs/development/python-modules/samsungtvws/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
, requests
, websocket_client
}:

buildPythonPackage rec {
pname = "samsungtvws";
version = "1.5.3";
disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "054rr8hiacdjfxqssnxnd3xp9hh8350zjzzjvh1199bpps4l1l6n";
};

patchPhase = ''
substituteInPlace setup.py --replace "websocket-client==" "websocket-client>="
'';

propagatedBuildInputs = [
websocket_client
requests
];

# no tests
doCheck = false;

pythonImportsCheck = [ "samsungtvws" ];

meta = with lib; {
description = "Samsung Smart TV WS API wrapper";
homepage = "https://github.com/xchwarze/samsung-tv-ws-api";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}
Loading