Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pytest-filter-subpackage / default.nix
blob054170408be6f3260f053b7467378d7cf6265b61
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 , pytest-cov
6 , pytest-doctestplus
7 , pytestCheckHook
8 , pythonOlder
9 , setuptools-scm
12 buildPythonPackage rec {
13   pname = "pytest-filter-subpackage";
14   version = "0.1.2";
15   format = "setuptools";
17   disabled = pythonOlder "3.7";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-H66jZxeAPlJFiNbBCdJtINOzRCLo1qloEnWJd9ygF4I=";
22   };
24   nativeBuildInputs = [
25     setuptools-scm
26   ];
28   buildInputs = [
29     pytest
30   ];
32   propagatedBuildInputs = [
33     pytest-doctestplus
34     pytest-cov
35   ];
37   nativeCheckInputs = [
38     pytestCheckHook
39   ];
41   # missing some files
42   disabledTests = [
43     "with_rst"
44   ];
46   meta = with lib; {
47     description = "Meta-package containing dependencies for testing";
48     homepage = "https://github.com/astropy/pytest-filter-subpackage";
49     changelog = "https://github.com/astropy/pytest-filter-subpackage/blob/v${version}/CHANGES.rst";
50     license = licenses.bsd3;
51     maintainers = with maintainers; [ ];
52   };