python3Packages: format with nixfmt

This commit is contained in:
Martin Weinelt 2024-05-22 16:01:06 +02:00
commit 59b1aef590
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
6796 changed files with 98055 additions and 98842 deletions

View file

@ -1,13 +1,14 @@
{ lib
, fetchPypi
, buildPythonPackage
, pythonOlder
, attrs
, pluggy
, six
, allure-python-commons-test
, setuptools-scm
, python
{
lib,
fetchPypi,
buildPythonPackage,
pythonOlder,
attrs,
pluggy,
six,
allure-python-commons-test,
setuptools-scm,
python,
}:
buildPythonPackage rec {
@ -22,18 +23,24 @@ buildPythonPackage rec {
hash = "sha256-ojLnlVgR+Yjkmkwd1sFszn6bgdDqBCKx5WVNMlTiyvM=";
};
nativeBuildInputs = [
setuptools-scm
];
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ attrs pluggy six allure-python-commons-test ];
propagatedBuildInputs = [
attrs
pluggy
six
allure-python-commons-test
];
checkPhase = ''
${python.interpreter} -m doctest ./src/utils.py
${python.interpreter} -m doctest ./src/mapping.py
'';
pythonImportsCheck = [ "allure" "allure_commons" ];
pythonImportsCheck = [
"allure"
"allure_commons"
];
meta = with lib; {
description = "Common engine for all modules. It is useful for make integration with your homemade frameworks";