Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / riprova / default.nix
blobadf327208955224203011039c1a614a0cfaf2649
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 }:
7 buildPythonPackage rec{
8   pname = "riprova";
9   version = "0.2.7";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "04drdvjjbh370csv2vb5zamg2aanxqkfm6w361qkybnra4g4g0dz";
14   };
16   propagatedBuildInputs = [ six ];
18   # PyPI archive doesn't have tests
19   doCheck = false;
21   pythonImportsCheck = [ "riprova" ];
23   meta = with lib; {
24     homepage = "https://github.com/h2non/riprova";
25     description = "Small and versatile library to retry failed operations using different backoff strategies";
26     license = licenses.mit;
27     maintainers = with maintainers; [ mmilata ];
28   };