depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-dependency/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

35 lines
753 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytest,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pytest-dependency";
version = "0.6.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-k0sOajnZWZUGLBk/fq7tio/6Bv8bzvS2Kw3HSnCLrME=";
};
nativeBuildInputs = [ setuptools ];
buildInputs = [ pytest ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pytest_dependency" ];
meta = with lib; {
homepage = "https://github.com/RKrahl/pytest-dependency";
changelog = "https://github.com/RKrahl/pytest-dependency/blob/${version}/CHANGES.rst";
description = "Manage dependencies of tests";
license = licenses.asl20;
maintainers = [ ];
};
}