python3Packages.pytest-filter-subpackage: init at 0.1.1

This commit is contained in:
Jonathan Ringer
2020-06-21 21:57:32 -07:00
committed by Jon
parent 26126db757
commit 19b96a1969
2 changed files with 41 additions and 0 deletions
@@ -0,0 +1,39 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytestcov
, pytest-doctestplus
, pytestCheckHook
, setuptools_scm
}:
buildPythonPackage rec {
pname = "pytest-filter-subpackage";
version = "0.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "1s4s2kd31yc65rfvl4xhy8xx806xhy59kc7668h6b6wq88xgrn5p";
};
nativeBuildInputs = [
setuptools_scm
];
propagatedBuildInputs = [
pytest
pytest-doctestplus
pytestcov
pytestCheckHook
];
# missing some files
disabledTests = [ "with_rst" ];
meta = with lib; {
description = "Meta-package containing dependencies for testing";
homepage = "https://astropy.org";
license = licenses.bsd3;
};
}