mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 23:51:03 +00:00
pythonPackages.pytest-randomly: 3.6.0 -> 3.10.1
https://github.com/pytest-dev/pytest-randomly/blob/main/HISTORY.rst#380-2021-05-10 https://github.com/pytest-dev/pytest-randomly/blob/main/HISTORY.rst#390-2021-08-12 https://github.com/pytest-dev/pytest-randomly/blob/main/HISTORY.rst#3100-2021-08-13 https://github.com/pytest-dev/pytest-randomly/blob/main/HISTORY.rst#3101-2021-08-13
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
||||
, factory_boy, faker, numpy, backports-entry-points-selectable
|
||||
, factory_boy, faker, numpy, importlib-metadata
|
||||
, pytestCheckHook, pytest-xdist
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-randomly";
|
||||
version = "3.6.0";
|
||||
version = "3.10.1";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
@@ -14,11 +14,11 @@ buildPythonPackage rec {
|
||||
repo = pname;
|
||||
owner = "pytest-dev";
|
||||
rev = version;
|
||||
sha256 = "17s7gx8b7sl7mp77f5dxzwbb32qliz9awrp6xz58bhjqp7pcsa5h";
|
||||
sha256 = "10z7hsr8yd80sf5113i61p0g1c0nqkx7p4xi19v3d133f6vjbh3k";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
backports-entry-points-selectable
|
||||
propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [
|
||||
importlib-metadata
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
|
||||
Reference in New Issue
Block a user