blob: 11738b230adc06b76ab09d1b14aa74219681734f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
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 = {
homepage = "https://github.com/RKrahl/pytest-dependency";
changelog = "https://github.com/RKrahl/pytest-dependency/blob/${version}/CHANGES.rst";
description = "Manage dependencies of tests";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|