2021-03-04 20:02:14 +00:00
|
|
|
{ lib
|
|
|
|
, aiohttp
|
|
|
|
, buildPythonPackage
|
2021-04-08 09:19:12 +01:00
|
|
|
, cryptography
|
2021-03-04 20:02:14 +00:00
|
|
|
, fetchPypi
|
|
|
|
, pythonOlder
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pymazda";
|
2022-01-28 02:09:21 +00:00
|
|
|
version = "0.3.2";
|
2022-01-22 17:32:34 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
2021-03-04 20:02:14 +00:00
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-01-28 02:09:21 +00:00
|
|
|
sha256 = "d51619cfbd90f4bb4e8fbfe1bccd58d4f5ece9bdb78d8f33fed1776d749d5fa9";
|
2021-03-04 20:02:14 +00:00
|
|
|
};
|
|
|
|
|
2021-04-08 09:19:12 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
aiohttp
|
|
|
|
cryptography
|
|
|
|
];
|
2021-03-04 20:02:14 +00:00
|
|
|
|
|
|
|
# Project has no tests
|
|
|
|
doCheck = false;
|
2022-01-22 17:32:34 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"pymazda"
|
|
|
|
];
|
2021-03-04 20:02:14 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python client for interacting with the MyMazda API";
|
|
|
|
homepage = "https://github.com/bdr99/pymazda";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|