biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / open-garage / default.nix
blobff50be9476e4c04dc512f2e80760db0af4e45701
2   lib,
3   aiohttp,
4   async-timeout,
5   buildPythonPackage,
6   fetchFromGitHub,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "open-garage";
12   version = "0.2.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.6";
17   src = fetchFromGitHub {
18     owner = "Danielhiversen";
19     repo = "pyOpenGarage";
20     rev = version;
21     hash = "sha256-iJ7HcJhpTceFpHTUdNZOYDuxUWZGWPmZ9lxD3CyGvk8=";
22   };
24   propagatedBuildInputs = [
25     aiohttp
26     async-timeout
27   ];
29   # Project has no tests
30   doCheck = false;
32   pythonImportsCheck = [ "opengarage" ];
34   meta = with lib; {
35     description = "Python module to communicate with opengarage.io";
36     homepage = "https://github.com/Danielhiversen/pyOpenGarage";
37     license = with licenses; [ mit ];
38     maintainers = with maintainers; [ fab ];
39   };