Merge pull request #218706 from rrbutani/add/pytest-md-report

python3Packages.pytest-md-report: init at 0.3.0

authored by

Fabian Affolter and committed by
GitHub
cb0247df ce91260a

+47 -1
+1
maintainers/maintainer-list.nix
··· 12899 12899 email = "rrbutani+nix@gmail.com"; 12900 12900 github = "rrbutani"; 12901 12901 githubId = 7833358; 12902 + matrix = "@rbutani:matrix.org"; 12902 12903 keys = [{ 12903 12904 fingerprint = "7DCA 5615 8AB2 621F 2F32 9FF4 1C7C E491 479F A273"; 12904 12905 }];
+43
pkgs/development/python-modules/pytest-md-report/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytablewriter 5 + , pytest 6 + , tcolorpy 7 + , typepy 8 + , pytestCheckHook 9 + , pythonOlder 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "pytest-md-report"; 14 + version = "0.3.0"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.6"; 18 + 19 + src = fetchPypi { 20 + inherit pname version; 21 + hash = "sha256-ra88WXG6+xHSjOcy6tdYjvpKpNlvu6lq+sZckLadAlU="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + pytablewriter 26 + tcolorpy 27 + typepy 28 + ]; 29 + 30 + buildInputs = [ pytest ]; 31 + 32 + nativeCheckInputs = [ pytestCheckHook ]; 33 + 34 + pythonImportsCheck = [ "pytest_md_report" ]; 35 + 36 + meta = with lib; { 37 + description = "A pytest plugin to make a test results report with Markdown table format"; 38 + homepage = "https://github.com/thombashi/pytest-md-report"; 39 + changelog = "https://github.com/thombashi/pytest-md-report/releases/tag/v${version}"; 40 + license = licenses.mit; 41 + maintainers = with maintainers; [ rrbutani ]; 42 + }; 43 + }
+3 -1
pkgs/top-level/python-packages.nix
··· 9156 9156 9157 9157 pytest-localserver = callPackage ../development/python-modules/pytest-localserver { }; 9158 9158 9159 - pytest-logdog = callPackage ../development/python-modules/pytest-logdog{ }; 9159 + pytest-logdog = callPackage ../development/python-modules/pytest-logdog { }; 9160 + 9161 + pytest-md-report = callPackage ../development/python-modules/pytest-md-report { }; 9160 9162 9161 9163 pytest-metadata = callPackage ../development/python-modules/pytest-metadata { }; 9162 9164