ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pymicrobot / default.nix
blob0923d8214c6192b522676d9584ab6aa08b4db228
1 { lib
2 , bleak
3 , bleak-retry-connector
4 , buildPythonPackage
5 , fetchPypi
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "pymicrobot";
11   version = "0.0.8";
12   format = "setuptools";
14   disabled = pythonOlder "3.9";
16   src = fetchPypi {
17     pname = "PyMicroBot";
18     inherit version;
19     hash = "sha256-I4EkiG39v0yJXOAR7lmaqedLf9zHQCcxLXQ0nTfYq70=";
20   };
22   propagatedBuildInputs = [
23     bleak
24     bleak-retry-connector
25   ];
27   # Module has no tests
28   doCheck = false;
30   pythonImportsCheck = [
31     "microbot"
32   ];
34   meta = with lib; {
35     description = "Library to communicate with MicroBot";
36     homepage = "https://github.com/spycle/pyMicroBot/";
37     license = licenses.mit;
38     maintainers = with maintainers; [ fab ];
39   };