2018-05-22 10:40:26 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "timeout-decorator";
|
2020-11-25 18:36:37 +00:00
|
|
|
version = "0.5.0";
|
2018-05-22 10:40:26 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-25 18:36:37 +00:00
|
|
|
sha256 = "6a2f2f58db1c5b24a2cc79de6345760377ad8bdc13813f5265f6c3e63d16b3d7";
|
2018-05-22 10:40:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Timeout decorator";
|
|
|
|
license = licenses.mit;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pnpnpn/timeout-decorator";
|
2018-05-22 10:40:26 +01:00
|
|
|
};
|
|
|
|
}
|