mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #205863 from r-ryantm/auto-update/python3.10-pytest-filter-subpackage
python310Packages.pytest-filter-subpackage: 0.1.1 -> 0.1.2
This commit is contained in:
commit
1710ed1f6f
@ -5,23 +5,29 @@
|
||||
, pytest-cov
|
||||
, pytest-doctestplus
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools-scm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-filter-subpackage";
|
||||
version = "0.1.1";
|
||||
version = "0.1.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1s4s2kd31yc65rfvl4xhy8xx806xhy59kc7668h6b6wq88xgrn5p";
|
||||
hash = "sha256-H66jZxeAPlJFiNbBCdJtINOzRCLo1qloEnWJd9ygF4I=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
buildInputs = [ pytest ];
|
||||
buildInputs = [
|
||||
pytest
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pytest-doctestplus
|
||||
@ -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; [ ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user