nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.pytest-celery: 1.1.3 -> 1.2.1

https://github.com/celery/pytest-celery/blob/v1.2.1/Changelog.rst

This commit was automatically generated using update-python-libraries.

+6 -5
+6 -5
pkgs/development/python-modules/pytest-celery/default.nix
··· 5 5 debugpy, 6 6 docker, 7 7 fetchFromGitHub, 8 + kombu, 8 9 poetry-core, 9 10 psutil, 10 - pytest-cov-stub, 11 11 pytest-docker-tools, 12 12 pytest, 13 - pytestCheckHook, 14 13 pythonOlder, 15 14 setuptools, 16 15 tenacity, ··· 17 18 18 19 buildPythonPackage rec { 19 20 pname = "pytest-celery"; 20 - version = "1.1.3"; 21 + version = "1.2.1"; 21 22 pyproject = true; 22 23 23 24 disabled = pythonOlder "3.8"; ··· 26 27 owner = "celery"; 27 28 repo = "pytest-celery"; 28 29 tag = "v${version}"; 29 - hash = "sha256-TUtKfGOxvVkiMhsUqyNDK08OTuzzKHrBiPU4JCKsIKM="; 30 + hash = "sha256-E8GO/00IC9kUvQLZmTFaK4FFQ7d+/tw/kVTQbAqRRRM="; 30 31 }; 31 32 32 33 postPatch = '' ··· 45 46 buildInput = [ pytest ]; 46 47 47 48 dependencies = [ 49 + (celery.overridePythonAttrs { doCheck = false; }) 48 50 debugpy 49 51 docker 52 + kombu 50 53 psutil 51 54 pytest-docker-tools 52 55 setuptools ··· 61 60 meta = with lib; { 62 61 description = "Pytest plugin to enable celery.contrib.pytest"; 63 62 homepage = "https://github.com/celery/pytest-celery"; 64 - changelog = "https://github.com/celery/pytest-celery/blob/v${version}/Changelog.rst"; 63 + changelog = "https://github.com/celery/pytest-celery/blob/${src.tag}/Changelog.rst"; 65 64 license = licenses.mit; 66 65 maintainers = [ ]; 67 66 };