Merge pull request #229496 from centromere/cron-descriptor-1.2.35

python3Packages.cron-descriptor: 1.2.30 -> 1.2.35

authored by Nick Cao and committed by GitHub 2395e4f1 4b438a28

+7 -2
+7 -2
pkgs/development/python-modules/cron-descriptor/default.nix
··· 2 2 , python 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 + , mock 5 6 , pytestCheckHook 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "cron_descriptor"; 10 - version = "1.2.30"; 11 + version = "1.2.35"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "Salamek"; 14 15 repo = "cron-descriptor"; 15 16 rev = "refs/tags/${version}"; 16 - hash = "sha256-Qei9f0HlIu5sautMEASvxdUqZyXKvHDWJgd3oST1gJo="; 17 + hash = "sha256-m+h91cddmEPHCeUWWNpTvb89mFwm8ty8tTnw3YDjCFo="; 17 18 }; 18 19 19 20 # remove tests_require, as we don't do linting anyways 20 21 postPatch = '' 21 22 sed -i "/'pep8\|flake8\|pep8-naming',/d" setup.py 22 23 ''; 24 + 25 + checkInputs = [ 26 + mock 27 + ]; 23 28 24 29 checkPhase = '' 25 30 ${python.interpreter} setup.py test