summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-wink/default.nix
blob: fa0dc670133ee9e90bd6a0fea7cb5194ce3e39c7 (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
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:

buildPythonPackage rec {
  pname = "python-wink";
  version = "1.10.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1r6qabnqxyy3llnj10z60d4w9pg2zabysl3l7znpy1adss4ywxl0";
  };

  propagatedBuildInputs = [ requests ];

  # Project has no tests
  doCheck = false;
  pythonImportsCheck = [ "pywink" ];

  meta = with lib; {
    description = "Python implementation of the Wink API";
    homepage = "https://github.com/python-wink/python-wink";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}