1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 requests,
6}:
7
8buildPythonPackage rec {
9 pname = "python-wink";
10 version = "1.10.5";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "1r6qabnqxyy3llnj10z60d4w9pg2zabysl3l7znpy1adss4ywxl0";
16 };
17
18 propagatedBuildInputs = [ requests ];
19
20 # Project has no tests
21 doCheck = false;
22 pythonImportsCheck = [ "pywink" ];
23
24 meta = with lib; {
25 description = "Python implementation of the Wink API";
26 homepage = "https://github.com/python-wink/python-wink";
27 license = with licenses; [ mit ];
28 maintainers = with maintainers; [ fab ];
29 };
30}