summary refs log tree commit diff
path: root/pkgs/development/python-modules/timeout-decorator/default.nix
blob: 342531ab9764e3193f51a6fc821f848d0d178764 (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.0";

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

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