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

buildPythonPackage rec {
  pname = "sharkiqpy";
  version = "0.1.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0nk1nbplyk28qadxc7rydjvdgbz3za0xjg6c95l95mhiz453q5sw";
  };

  propagatedBuildInputs = [
    aiohttp
    requests
  ];

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

  meta = with lib; {
    description = "Python API for Shark IQ robot";
    homepage = "https://github.com/ajmarks/sharkiq";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}