blob: 617972e9671a76f060f25e55841e4b6ecc883490 (
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
36
37
38
39
40
41
42
43
|
{
lib,
buildPythonPackage,
fetchPypi,
pytest,
pytest-cov-stub,
pytest-doctestplus,
pytestCheckHook,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pytest-filter-subpackage";
version = "0.2.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-P0aPGzZRgSiGm5Xeq2YbpF7WKThUMp/vFNpMjKx4r1Y=";
};
nativeBuildInputs = [ setuptools-scm ];
buildInputs = [ pytest ];
propagatedBuildInputs = [
pytest-doctestplus
pytest-cov-stub
];
nativeCheckInputs = [ pytestCheckHook ];
# missing some files
disabledTests = [ "with_rst" ];
meta = {
description = "Meta-package containing dependencies for testing";
homepage = "https://github.com/astropy/pytest-filter-subpackage";
changelog = "https://github.com/astropy/pytest-filter-subpackage/blob/v${version}/CHANGES.rst";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|