depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-twisted/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

42 lines
722 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
greenlet,
pytest,
decorator,
twisted,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pytest-twisted";
version = "1.14.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-qbGLyfykfSiG+O/j/SeHmoHxwLtJ8cVgZmyedkSRtjI=";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [
decorator
greenlet
];
nativeCheckInputs = [
pytestCheckHook
twisted
];
pythonImportsCheck = [ "pytest_twisted" ];
meta = with lib; {
description = "Twisted plugin for py.test";
homepage = "https://github.com/pytest-dev/pytest-twisted";
license = licenses.bsd3;
maintainers = [ ];
};
}