about summary refs log tree commit diff
path: root/pkgs/development/python-modules/allure-pytest/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/allure-pytest/default.nix')
-rw-r--r--pkgs/development/python-modules/allure-pytest/default.nix35
1 files changed, 14 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/allure-pytest/default.nix b/pkgs/development/python-modules/allure-pytest/default.nix
index ba86e0723a5df..88fc7054f1e61 100644
--- a/pkgs/development/python-modules/allure-pytest/default.nix
+++ b/pkgs/development/python-modules/allure-pytest/default.nix
@@ -1,42 +1,35 @@
-{ lib
-, allure-python-commons
-, buildPythonPackage
-, fetchPypi
-, pytest
-, pythonOlder
-, setuptools-scm
+{
+  lib,
+  allure-python-commons,
+  buildPythonPackage,
+  fetchPypi,
+  pytest,
+  pythonOlder,
+  setuptools-scm,
 }:
 
 buildPythonPackage rec {
   pname = "allure-pytest";
-  version = "2.13.2";
+  version = "2.13.5";
   pyproject = true;
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-IiQxWejsgc4rUlS0ATgCGYghsbQvEY9p1KKJOWYHx7M=";
+    hash = "sha256-DvjheQxEqYjba4PE1PXpFFHixMjqEGAd+ohSjSOvz24=";
   };
 
-  nativeBuildInputs = [
-    setuptools-scm
-  ];
+  nativeBuildInputs = [ setuptools-scm ];
 
-  buildInputs = [
-    pytest
-  ];
+  buildInputs = [ pytest ];
 
-  propagatedBuildInputs = [
-    allure-python-commons
-  ];
+  propagatedBuildInputs = [ allure-python-commons ];
 
   # Tests were moved to the meta package
   doCheck = false;
 
-  pythonImportsCheck = [
-    "allure_pytest"
-  ];
+  pythonImportsCheck = [ "allure_pytest" ];
 
   meta = with lib; {
     description = "Allure integrations for Python test frameworks";