python3Packages.dash: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-01-29 10:05:04 +01:00 committed by GitHub
parent d09234879c
commit c88d3c371a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,11 +10,15 @@
, pytest-mock
, mock
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "dash";
version = "2.1.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "plotly";