tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.smarthab: init at 0.21
Robert Schütz
4 years ago
db1ee4e1
d2d33bbd
+34
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
smarthab
default.nix
top-level
python-packages.nix
+32
pkgs/development/python-modules/smarthab/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchPypi
4
4
+
, aiohttp
5
5
+
}:
6
6
+
7
7
+
buildPythonPackage rec {
8
8
+
pname = "smarthab";
9
9
+
version = "0.21";
10
10
+
11
11
+
src = fetchPypi {
12
12
+
pname = "SmartHab";
13
13
+
inherit version;
14
14
+
sha256 = "bf929455a2f7cc1e275b331de73d983587138a8d9179574988ba05fa152d3ccf";
15
15
+
};
16
16
+
17
17
+
propagatedBuildInputs = [
18
18
+
aiohttp
19
19
+
];
20
20
+
21
21
+
# no tests on PyPI, no tags on GitLab
22
22
+
doCheck = false;
23
23
+
24
24
+
pythonImportsCheck = [ "pysmarthab" ];
25
25
+
26
26
+
meta = with lib; {
27
27
+
description = "Control devices in a SmartHab-powered home";
28
28
+
homepage = "https://gitlab.com/outadoc/python-smarthab";
29
29
+
license = licenses.gpl3Plus;
30
30
+
maintainers = with maintainers; [ dotlambda ];
31
31
+
};
32
32
+
}
+2
pkgs/top-level/python-packages.nix
···
7986
7986
7987
7987
smart-open = callPackage ../development/python-modules/smart-open { };
7988
7988
7989
7989
+
smarthab = callPackage ../development/python-modules/smarthab { };
7990
7990
+
7989
7991
smartypants = callPackage ../development/python-modules/smartypants { };
7990
7992
7991
7993
smbprotocol = callPackage ../development/python-modules/smbprotocol { };