2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-04-13 23:47:47 +00:00

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 , fetchPypi
, aiohttp , aiohttp
, python-dateutil , python-dateutil
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyplaato"; pname = "pyplaato";
version = "0.0.17"; version = "0.0.17";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; 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; doCheck = false;
pythonImportsCheck = [ "pyplaato" ];
pythonImportsCheck = [
"pyplaato"
];
meta = with lib; { meta = with lib; {
description = "Python API client for fetching Plaato data"; description = "Python API client for fetching Plaato data";