blob: 941c753f0e5057dcd890d96b3b266dd66aa728eb (
plain) (
blame)
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
31
32
33
34
35
36
37
38
39
40
41
|
{ lib
, buildPythonPackage
, fetchPypi
, click
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "vsure";
version = "2.6.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-/eVFa1BTFbvFTAt48Bv+bjsV7f2eVSuKARJQVxDqU9s=";
};
propagatedBuildInputs = [
click
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"verisure"
];
meta = with lib; {
description = "Python library for working with verisure devices";
mainProgram = "vsure";
homepage = "https://github.com/persandstrom/python-verisure";
changelog = "https://github.com/persandstrom/python-verisure#version-history";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
|