depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-celery/default.nix
Default email b55a4ee46f Project import generated by Copybara.
GitOrigin-RevId: e9158eca70ae59e73fae23be5d13d3fa0cfc78b4
2020-12-09 13:39:15 +01:00

21 lines
582 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pytest, setuptools_scm }:
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.
meta = with stdenv.lib; {
description = "pytest plugin for unittest subTest() support and subtests fixture";
homepage = "https://github.com/pytest-dev/pytest-subtests";
license = licenses.mit;
};
}