summary refs log tree commit diff
path: root/pkgs/development/python-modules/retrying/default.nix
blob: 5e2451affb9059cd0d64af9d5be4c2eeb4aa5e5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildPythonPackage
, fetchPypi
, six
}:

buildPythonPackage rec {
  pname = "retrying";
  version = "1.3.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0fwp86xv0rvkncjdvy2mwcvbglw4w9k0fva25i7zx8kd19b3kh08";
  };

  propagatedBuildInputs = [ six ];

  # doesn't ship tests in tarball
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/rholder/retrying";
    description = "General-purpose retrying library";
    license = licenses.asl20;
  };

}