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

  src = fetchPypi {
    inherit pname version;
    sha256 = "6a2f2f58db1c5b24a2cc79de6345760377ad8bdc13813f5265f6c3e63d16b3d7";
  };

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