linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytest-celery / default.nix
blob414cf1ecc9cb944885adab17c60dc8a9d12bb4e3
1 { lib, buildPythonPackage, fetchPypi, pytest, setuptools_scm }:
3 buildPythonPackage rec {
4   pname = "pytest-celery";
5   version = "0.0.0a1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0qifwi7q8dfwbzz2vm5m40lw23qh2fzibngbmw6qgwnkq8bhh3iy";
10   };
12   patches = [ ./no-celery.patch ];
14   doCheck = false; # This package has nothing to test or import.
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   };