41 lines
797 B
Nix
41 lines
797 B
Nix
|
{
|
||
|
lib,
|
||
|
aiohttp,
|
||
|
async-timeout,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "open-garage";
|
||
|
version = "0.2.0";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Danielhiversen";
|
||
|
repo = "pyOpenGarage";
|
||
|
rev = version;
|
||
|
hash = "sha256-iJ7HcJhpTceFpHTUdNZOYDuxUWZGWPmZ9lxD3CyGvk8=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
aiohttp
|
||
|
async-timeout
|
||
|
];
|
||
|
|
||
|
# Project has no tests
|
||
|
doCheck = false;
|
||
|
|
||
|
pythonImportsCheck = [ "opengarage" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python module to communicate with opengarage.io";
|
||
|
homepage = "https://github.com/Danielhiversen/pyOpenGarage";
|
||
|
license = with licenses; [ mit ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|