about summary refs log tree commit diff
path: root/pkgs/development/python-modules/allure-python-commons/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/allure-python-commons/default.nix')
-rw-r--r--pkgs/development/python-modules/allure-python-commons/default.nix41
1 files changed, 24 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/allure-python-commons/default.nix b/pkgs/development/python-modules/allure-python-commons/default.nix
index 2e6a38e51341c..30881b90f3fdb 100644
--- a/pkgs/development/python-modules/allure-python-commons/default.nix
+++ b/pkgs/development/python-modules/allure-python-commons/default.nix
@@ -1,39 +1,46 @@
-{ 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 {
   pname = "allure-python-commons";
-  version = "2.13.2";
+  version = "2.13.5";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-igNoEzAjGx3q3Ya5f/aIQcZZEyARSuY4Vw8e1g16IDM=";
+    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";