2021-06-03 16:02:47 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2020-12-07 10:51:58 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-celery";
|
|
|
|
version = "0.0.0a1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0qifwi7q8dfwbzz2vm5m40lw23qh2fzibngbmw6qgwnkq8bhh3iy";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./no-celery.patch ];
|
|
|
|
|
|
|
|
doCheck = false; # This package has nothing to test or import.
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-12-07 10:51:58 +00:00
|
|
|
description = "pytest plugin for unittest subTest() support and subtests fixture";
|
|
|
|
homepage = "https://github.com/pytest-dev/pytest-subtests";
|
|
|
|
license = licenses.mit;
|
2021-06-03 16:02:47 +01:00
|
|
|
maintainers = [ ];
|
2020-12-07 10:51:58 +00:00
|
|
|
};
|
|
|
|
}
|