1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pytest-celery"; 5 version = "0.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "cfd060fc32676afa1e4f51b2938f903f7f75d952186b8c6cf631628c4088f406"; 10 }; 11 12 patches = [ ./no-celery.patch ]; 13 14 doCheck = false; # This package has nothing to test or import. 15 16 meta = with lib; { 17 description = "pytest plugin for unittest subTest() support and subtests fixture"; 18 homepage = "https://github.com/pytest-dev/pytest-subtests"; 19 license = licenses.mit; 20 maintainers = [ ]; 21 }; 22}