python3Packages.pyplaato: disable on older Python releases

main
Fabian Affolter 2 years ago committed by GitHub
parent 5f2673066f
commit 24b77b240d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      pkgs/development/python-modules/pyplaato/default.nix

@ -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";

Loading…
Cancel
Save