Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / open-garage / default.nix
blob3064bceda1a0702f03145f77b7bbaa54f07d3a4c
1 { lib
2 , aiohttp
3 , async-timeout
4 , buildPythonPackage
5 , fetchFromGitHub
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "open-garage";
11   version = "0.2.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchFromGitHub {
17     owner = "Danielhiversen";
18     repo = "pyOpenGarage";
19     rev = version;
20     hash = "sha256-iJ7HcJhpTceFpHTUdNZOYDuxUWZGWPmZ9lxD3CyGvk8=";
21   };
23   propagatedBuildInputs = [
24     aiohttp
25     async-timeout
26   ];
28   # Project has no tests
29   doCheck = false;
31   pythonImportsCheck = [
32     "opengarage"
33   ];
35   meta = with lib; {
36     description = "Python module to communicate with opengarage.io";
37     homepage = "https://github.com/Danielhiversen/pyOpenGarage";
38     license = with licenses; [ mit ];
39     maintainers = with maintainers; [ fab ];
40   };