blob: 091829f70fb372f8fb1d620e3630d2fd1d47f24e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "pyflexit";
version = "0.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "Sabesto";
repo = "pyflexit";
rev = version;
sha256 = "1ajlqr3z6zj4fyslqzpwpfkvh8xjx94wsznzij0vx0q7jp43bqig";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pyflexit" ];
meta = {
description = "Python library for Flexit A/C units";
homepage = "https://github.com/Sabesto/pyflexit";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|