From 5e1fa4cdebd127d37a19cc1f01098cea7d3ae2d4 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 27 Dec 2022 22:58:46 +0100 Subject: [PATCH 05/10] gnu: Add python-pytest-random-order. * gnu/packages/python-xyz.scm (python-pytest-random-order): New variable. diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 985d36ba49..d98a442fde 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12729,6 +12729,26 @@ (define-public python-pytest-black Python code formatter \"black\".") (license license:expat))) +(define-public python-pytest-random-order + (package + (name "python-pytest-random-order") + (version "1.1.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "pytest-random-order" version)) + (sha256 + (base32 + "01annkcqxxi17ngafa8mrjxlvpbp6pmxpvf99jcaz9skjfxxxrnv")))) + (build-system python-build-system) + (propagated-inputs (list python-pytest)) + (home-page "https://github.com/jbasko/pytest-random-order") + (synopsis + "Randomise the order in which pytest tests are run with some control over the randomness") + (description + "Randomise the order in which pytest tests are run with some control over the +randomness") + (license license:expat))) + (define-public python-geojson (package (name "python-geojson") -- 2.38.1