Commit 0ed64561 authored by j.r's avatar j.r
Browse files

python3Packages.cron-descriptor: fix dependencies

It requires typing_extensions not only as test dependency but also as
runtime dependency, see:
https://github.com/Salamek/cron-descriptor/blob/d1bc211c5be4ceb92b24126aa24f92d641227260/cron_descriptor/ExpressionDescriptor.py#L29
parent e9d43c46
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -21,10 +21,9 @@ buildPythonPackage rec {

  build-system = [ setuptools ];

  nativeCheckInputs = [
    pytestCheckHook
    typing-extensions
  ];
  dependencies = [ typing-extensions ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "cron_descriptor" ];