tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.circuitbreaker: 1.4.0 -> 2.0.0
Martin Weinelt
2 years ago
b1335210
2912181c
+6
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
circuitbreaker
default.nix
+6
-4
pkgs/development/python-modules/circuitbreaker/default.nix
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchFromGitHub
4
4
-
, mock
5
4
, pytestCheckHook
5
5
+
, pytest-asyncio
6
6
+
, pytest-mock
6
7
, pythonOlder
7
8
}:
8
9
9
10
buildPythonPackage rec {
10
11
pname = "circuitbreaker";
11
11
-
version = "1.4.0";
12
12
+
version = "2.0.0";
12
13
format = "setuptools";
13
14
14
15
disabled = pythonOlder "3.8";
···
17
18
owner = "fabfuel";
18
19
repo = pname;
19
20
rev = "refs/tags/${version}";
20
20
-
hash = "sha256-l0ASt9CQmgJmWpRrghElbff/gaNOmxNh+Wj0C0p4jE0=";
21
21
+
hash = "sha256-jaDCMGCZZu3STluYeHDNgdEPf2DNq7bXJ0LPV3JZdk0=";
21
22
};
22
23
23
24
nativeCheckInputs = [
24
24
-
mock
25
25
pytestCheckHook
26
26
+
pytest-asyncio
27
27
+
pytest-mock
26
28
];
27
29
28
30
pythonImportsCheck = [