Merge pull request #159946 from r-ryantm/auto-update/python3.9-nose2

python39Packages.nose2: 0.10.0 -> 0.11.0
This commit is contained in:
Fabian Affolter
2022-02-15 12:52:54 +01:00
committed by GitHub
@@ -9,26 +9,33 @@
buildPythonPackage rec {
pname = "nose2";
version = "0.10.0";
version = "0.11.0";
format = "setuptools";
# Requires mock 2.0.0 if python < 3.6, but NixPkgs has mock 3.0.5.
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "886ba617a96de0130c54b24479bd5c2d74d5c940d40f3809c3a275511a0c4a60";
hash = "sha256-bSCNfW7J+dVcdNrIHJOUvDkG2++BqMpUILK5t/jmnek=";
};
propagatedBuildInputs = [ six coverage ];
propagatedBuildInputs = [
coverage
six
];
checkPhase = ''
${python.interpreter} -m unittest
'';
pythonImportsCheck = [
"nose2"
];
meta = with lib; {
description = "nose2 is the next generation of nicer testing for Python";
description = "Test runner for Python";
homepage = "https://github.com/nose-devs/nose2";
license = licenses.bsd0;
maintainers = with maintainers; [ ];
};
}