summary refs log tree commit diff
path: root/pkgs/development/python-modules/timeout-decorator/default.nix
blob: bf37e671cd138f7af63fbbc76addfc8b82a51d1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
  pname = "timeout-decorator";
  version = "0.4.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1inkf68i2s2x27arpqwkdxigiqbpbpjbbnfv7jzsrif1fmp2fphs";
  };

  meta = with stdenv.lib; {
    description = "Timeout decorator";
    license = licenses.mit;
    homepage = "https://github.com/pnpnpn/timeout-decorator";
  };
}