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
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib
2
+
, buildPythonPackage
3
+
, fetchPypi
4
+
, aiohttp
5
+
}:
6
+
7
+
buildPythonPackage rec {
8
+
pname = "smarthab";
9
+
version = "0.21";
10
+
11
+
src = fetchPypi {
12
+
pname = "SmartHab";
13
+
inherit version;
14
+
sha256 = "bf929455a2f7cc1e275b331de73d983587138a8d9179574988ba05fa152d3ccf";
15
+
};
16
+
17
+
propagatedBuildInputs = [
18
+
aiohttp
19
+
];
20
+
21
+
# no tests on PyPI, no tags on GitLab
22
+
doCheck = false;
23
+
24
+
pythonImportsCheck = [ "pysmarthab" ];
25
+
26
+
meta = with lib; {
27
+
description = "Control devices in a SmartHab-powered home";
28
+
homepage = "https://gitlab.com/outadoc/python-smarthab";
29
+
license = licenses.gpl3Plus;
30
+
maintainers = with maintainers; [ dotlambda ];
31
+
};
32
+
}
+2
pkgs/top-level/python-packages.nix
···
7986
7987
smart-open = callPackage ../development/python-modules/smart-open { };
7988
0
0
7989
smartypants = callPackage ../development/python-modules/smartypants { };
7990
7991
smbprotocol = callPackage ../development/python-modules/smbprotocol { };
···
7986
7987
smart-open = callPackage ../development/python-modules/smart-open { };
7988
7989
+
smarthab = callPackage ../development/python-modules/smarthab { };
7990
+
7991
smartypants = callPackage ../development/python-modules/smartypants { };
7992
7993
smbprotocol = callPackage ../development/python-modules/smbprotocol { };