1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 01:11:02 +03:00
nixpkgs/pkgs/development/python-modules/pytest-dependency/default.nix
2024-05-22 17:32:03 +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 = [ ];
};
}