Skip to content

Commit

Permalink
python310Packages.pytest-filter-subpackage: add changelog to meta
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff authored Dec 13, 2022
1 parent f4edf5d commit 81503a9
Showing 1 changed file with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,29 @@
, pytest-cov
, pytest-doctestplus
, pytestCheckHook
, pythonOlder
, setuptools-scm
}:

buildPythonPackage rec {
pname = "pytest-filter-subpackage";
version = "0.1.2";
format = "setuptools";

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
sha256 = "sha256-H66jZxeAPlJFiNbBCdJtINOzRCLo1qloEnWJd9ygF4I=";
hash = "sha256-H66jZxeAPlJFiNbBCdJtINOzRCLo1qloEnWJd9ygF4I=";
};

nativeBuildInputs = [
setuptools-scm
];

buildInputs = [ pytest ];
buildInputs = [
pytest
];

propagatedBuildInputs = [
pytest-doctestplus
Expand All @@ -33,11 +39,15 @@ buildPythonPackage rec {
];

# missing some files
disabledTests = [ "with_rst" ];
disabledTests = [
"with_rst"
];

meta = with lib; {
description = "Meta-package containing dependencies for testing";
homepage = "https://astropy.org";
homepage = "https://github.com/astropy/pytest-filter-subpackage";
changelog = "https://github.com/astropy/pytest-filter-subpackage/blob/v${version}/CHANGES.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}

0 comments on commit 81503a9

Please sign in to comment.