1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 wheel, 7 typeguard, 8}: 9 10buildPythonPackage rec { 11 pname = "scheduler"; 12 version = "0.8.8"; 13 pyproject = true; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-RXWhLNJp5OSJZAmDb9kRVgy2P7djQ2DuYqovpOxJX/0="; 18 }; 19 20 nativeBuildInputs = [ 21 setuptools 22 wheel 23 ]; 24 25 propagatedBuildInputs = [ 26 typeguard 27 ]; 28 29 pythonImportsCheck = [ "scheduler" ]; 30 31 meta = with lib; { 32 description = "Simple in-process python scheduler library with asyncio, threading and timezone support"; 33 homepage = "https://pypi.org/project/scheduler/"; 34 license = licenses.lgpl3; 35 maintainers = with maintainers; [ pinpox ]; 36 }; 37}