2018-05-22 10:40:26 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "timeout-decorator";
|
2018-12-14 18:04:06 +00:00
|
|
|
version = "0.4.1";
|
2018-05-22 10:40:26 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-12-14 18:04:06 +00:00
|
|
|
sha256 = "1inkf68i2s2x27arpqwkdxigiqbpbpjbbnfv7jzsrif1fmp2fphs";
|
2018-05-22 10:40:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Timeout decorator";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = https://github.com/pnpnpn/timeout-decorator;
|
|
|
|
};
|
|
|
|
}
|