+10
-4
pkgs/development/python-modules/total-connect-client/default.nix
+10
-4
pkgs/development/python-modules/total-connect-client/default.nix
···
1
{ lib
2
, buildPythonPackage
3
, fetchFromGitHub
4
, zeep
5
-
, pytestCheckHook
6
}:
7
8
buildPythonPackage rec {
9
pname = "total-connect-client";
10
-
version = "2021.8.3";
11
12
src = fetchFromGitHub {
13
owner = "craigjmidwinter";
14
repo = "total-connect-client";
15
rev = version;
16
-
sha256 = "sha256-2iTH/Him4iMZadkmBR8Rwlt3RCqDXzR6ZqNHciNiHIk=";
17
};
18
19
propagatedBuildInputs = [
···
33
"tests_request"
34
];
35
36
-
pythonImportsCheck = [ "total_connect_client" ];
37
38
meta = with lib; {
39
description = "Interact with Total Connect 2 alarm systems";
···
1
{ lib
2
, buildPythonPackage
3
, fetchFromGitHub
4
+
, pytestCheckHook
5
+
, pythonOlder
6
, zeep
7
}:
8
9
buildPythonPackage rec {
10
pname = "total-connect-client";
11
+
version = "2021.11.2";
12
+
format = "setuptools";
13
+
14
+
disabled = pythonOlder "3.7";
15
16
src = fetchFromGitHub {
17
owner = "craigjmidwinter";
18
repo = "total-connect-client";
19
rev = version;
20
+
sha256 = "sha256-JXau+NmulnZ0gg2XsXD9EFv3j2FBMqVqzpT1XGvMZuA=";
21
};
22
23
propagatedBuildInputs = [
···
37
"tests_request"
38
];
39
40
+
pythonImportsCheck = [
41
+
"total_connect_client"
42
+
];
43
44
meta = with lib; {
45
description = "Interact with Total Connect 2 alarm systems";
+1
-1
pkgs/servers/home-assistant/component-packages.nix
+1
-1
pkgs/servers/home-assistant/component-packages.nix
+2
-2
pkgs/servers/home-assistant/default.nix
+2
-2
pkgs/servers/home-assistant/default.nix
···
127
extraBuildInputs = extraPackages py.pkgs;
128
129
# Don't forget to run parse-requirements.py after updating
130
-
hassVersion = "2021.11.0";
131
132
in with py.pkgs; buildPythonApplication rec {
133
pname = "homeassistant";
···
144
owner = "home-assistant";
145
repo = "core";
146
rev = version;
147
-
sha256 = "1bhm2ahc9fvh3czhfim3la0vdwdis2r86fa0qldqpnh11v25hb2s";
148
};
149
150
# leave this in, so users don't have to constantly update their downstream patch handling
···
127
extraBuildInputs = extraPackages py.pkgs;
128
129
# Don't forget to run parse-requirements.py after updating
130
+
hassVersion = "2021.11.2";
131
132
in with py.pkgs; buildPythonApplication rec {
133
pname = "homeassistant";
···
144
owner = "home-assistant";
145
repo = "core";
146
rev = version;
147
+
sha256 = "13212h67ijvir8rlr4gpd2945xx5f5c2lj3bwg7ncw55r23h6hma";
148
};
149
150
# leave this in, so users don't have to constantly update their downstream patch handling
+2
-2
pkgs/servers/home-assistant/frontend.nix
+2
-2
pkgs/servers/home-assistant/frontend.nix
···
4
# the frontend version corresponding to a specific home-assistant version can be found here
5
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
6
pname = "home-assistant-frontend";
7
-
version = "20211103.0";
8
9
src = fetchPypi {
10
inherit pname version;
11
-
sha256 = "sha256-gny97mYHNwQ8KderebfLALCbIyddbwRoD5Ux6ahDdVk=";
12
};
13
14
# there is nothing to strip in this package
···
4
# the frontend version corresponding to a specific home-assistant version can be found here
5
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
6
pname = "home-assistant-frontend";
7
+
version = "20211108.0";
8
9
src = fetchPypi {
10
inherit pname version;
11
+
sha256 = "sha256-cMCjBhtPi73AB9bplUH8ZNQMt5WJ/NZFW4qLuHHo3+g=";
12
};
13
14
# there is nothing to strip in this package