ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / circuitbreaker / default.nix
blobd6c6832debb7b1c3ee301271b738a04638dad4b1
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , mock
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "circuitbreaker";
11   version = "1.4.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.8";
16   src = fetchFromGitHub {
17     owner = "fabfuel";
18     repo = pname;
19     rev = "refs/tags/${version}";
20     sha256 = "sha256-l0ASt9CQmgJmWpRrghElbff/gaNOmxNh+Wj0C0p4jE0=";
21   };
23   checkInputs = [
24     mock
25     pytestCheckHook
26   ];
28   pythonImportsCheck = [
29     "circuitbreaker"
30   ];
32   meta = with lib; {
33     description = "Python Circuit Breaker implementation";
34     homepage = "https://github.com/fabfuel/circuitbreaker";
35     license = with licenses; [ bsd3 ];
36     maintainers = with maintainers; [ fab ];
37   };