nixpkgs/pkgs/development/python-modules/pytest-celery/default.nix
2023-09-22 21:11:20 +02:00

36 lines
791 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, flit-core }:
buildPythonPackage rec {
pname = "pytest-celery";
version = "0.1.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "celery";
repo = "pytest-celery";
rev = "v${version}";
hash = "sha256-vzWwkOS3BLOInaFDk+PegvEmC88ZZ1sG1CmHwhn7r9w=";
};
postPatch = ''
# avoid infinite recursion with celery
substituteInPlace pyproject.toml \
--replace '"celery >= 4.4.0"' ""
'';
nativeBuildInputs = [
flit-core
];
# This package has nothing to test or import.
doCheck = false;
meta = with lib; {
description = "Pytest plugin to enable celery.contrib.pytest";
homepage = "https://github.com/celery/pytest-celery";
license = licenses.mit;
maintainers = [ ];
};
}