summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-celery/default.nix
blob: 034c657b5b0fe99cf03a08d813a37893d9cb4479 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, 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 lib; {
    description = "pytest plugin for unittest subTest() support and subtests fixture";
    homepage = "https://github.com/pytest-dev/pytest-subtests";
    license = licenses.mit;
  };
}