python3Packages.pyplaato: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-04-08 12:13:26 +02:00 committed by GitHub
parent 5f2673066f
commit 24b77b240d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,22 +3,32 @@
, fetchPypi
, aiohttp
, python-dateutil
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyplaato";
version = "0.0.17";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-fd7gHDah5yoqpH5d3bwEDsIfeflXzXevJLMD7lvz180=";
hash = "sha256-fd7gHDah5yoqpH5d3bwEDsIfeflXzXevJLMD7lvz180=";
};
propagatedBuildInputs = [ aiohttp python-dateutil ];
propagatedBuildInputs = [
aiohttp
python-dateutil
];
# Project has no tests
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "pyplaato" ];
pythonImportsCheck = [
"pyplaato"
];
meta = with lib; {
description = "Python API client for fetching Plaato data";