Merge pull request #335248 from dotlambda/python3Packages.pytest-twisted
python312Packages.pytest-twisted: 1.14.1 -> 1.14.2
This commit is contained in:
commit
a22fee3f23
@ -1,7 +1,8 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
greenlet,
|
||||
pytest,
|
||||
decorator,
|
||||
@ -11,17 +12,21 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-twisted";
|
||||
version = "1.14.1";
|
||||
format = "setuptools";
|
||||
version = "1.14.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-qbGLyfykfSiG+O/j/SeHmoHxwLtJ8cVgZmyedkSRtjI=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "pytest-dev";
|
||||
repo = "pytest-twisted";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-1NkKTdk5D36VngJtBEdT42o1MmMT6stBne9KyC17518=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
buildInputs = [ pytest ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dependencies = [
|
||||
decorator
|
||||
greenlet
|
||||
];
|
||||
@ -34,6 +39,7 @@ buildPythonPackage rec {
|
||||
pythonImportsCheck = [ "pytest_twisted" ];
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/pytest-dev/pytest-twisted/releases/tag/v${version}";
|
||||
description = "Twisted plugin for py.test";
|
||||
homepage = "https://github.com/pytest-dev/pytest-twisted";
|
||||
license = licenses.bsd3;
|
||||
|
Loading…
Reference in New Issue
Block a user