From 86d21294bf6d0382cf26d2deaffa6ac70ce0dcda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 3 Jun 2021 17:02:47 +0200 Subject: [PATCH] pythonPackages.pytest-celery: remove unused inputs, add empty maintainer --- pkgs/development/python-modules/pytest-celery/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest-celery/default.nix b/pkgs/development/python-modules/pytest-celery/default.nix index 648e5c0fbc8..4b3999ec86b 100644 --- a/pkgs/development/python-modules/pytest-celery/default.nix +++ b/pkgs/development/python-modules/pytest-celery/default.nix @@ -1,4 +1,4 @@ -{ lib, buildPythonPackage, fetchPypi, pytest, setuptools-scm }: +{ lib, buildPythonPackage, fetchPypi }: buildPythonPackage rec { pname = "pytest-celery"; @@ -17,5 +17,6 @@ buildPythonPackage rec { description = "pytest plugin for unittest subTest() support and subtests fixture"; homepage = "https://github.com/pytest-dev/pytest-subtests"; license = licenses.mit; + maintainers = [ ]; }; }