Merge pull request #335248 from dotlambda/python3Packages.pytest-twisted

python312Packages.pytest-twisted: 1.14.1 -> 1.14.2
This commit is contained in:
Nick Cao 2024-08-17 14:14:48 -04:00 committed by GitHub
commit a22fee3f23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,8 @@
{ {
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchPypi, fetchFromGitHub,
setuptools,
greenlet, greenlet,
pytest, pytest,
decorator, decorator,
@ -11,17 +12,21 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-twisted"; pname = "pytest-twisted";
version = "1.14.1"; version = "1.14.2";
format = "setuptools"; pyproject = true;
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "pytest-dev";
hash = "sha256-qbGLyfykfSiG+O/j/SeHmoHxwLtJ8cVgZmyedkSRtjI="; repo = "pytest-twisted";
rev = "refs/tags/v${version}";
hash = "sha256-1NkKTdk5D36VngJtBEdT42o1MmMT6stBne9KyC17518=";
}; };
build-system = [ setuptools ];
buildInputs = [ pytest ]; buildInputs = [ pytest ];
propagatedBuildInputs = [ dependencies = [
decorator decorator
greenlet greenlet
]; ];
@ -34,6 +39,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pytest_twisted" ]; pythonImportsCheck = [ "pytest_twisted" ];
meta = with lib; { meta = with lib; {
changelog = "https://github.com/pytest-dev/pytest-twisted/releases/tag/v${version}";
description = "Twisted plugin for py.test"; description = "Twisted plugin for py.test";
homepage = "https://github.com/pytest-dev/pytest-twisted"; homepage = "https://github.com/pytest-dev/pytest-twisted";
license = licenses.bsd3; license = licenses.bsd3;