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:
parent
5f2673066f
commit
24b77b240d
@ -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";
|
||||||
|
Loading…
Reference in New Issue
Block a user