blob: afff1db73d9a751943169fe0c4ba21fc1d26d008 (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
requests,
}:
buildPythonPackage rec {
pname = "sharkiq";
version = "1.0.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "JeffResc";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-UG460uEv1U/KTuVEcXMZlVbK/7REFpotkUk4U7z7KpA=";
};
propagatedBuildInputs = [
aiohttp
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "sharkiq" ];
meta = with lib; {
description = "Python API for Shark IQ robots";
homepage = "https://github.com/JeffResc/sharkiq";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
|