pythonPackages.timeout-decorator: 0.3.2 -> 0.4.0 (#40914)
This commit is contained in:
parent
57d591ec7f
commit
05db1a11a9
|
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -13034,15 +13034,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
timeout-decorator = buildPythonPackage rec {
|
timeout-decorator = callPackage ../development/python-modules/timeout-decorator { };
|
||||||
name = "timeout-decorator-${version}";
|
|
||||||
version = "0.3.2";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "http://pypi.python.org/packages/source/t/timeout-decorator/${name}.tar.gz";
|
|
||||||
sha256 = "1x9l8bwdk72if2d5h5mi4lcaidbsmyh0iz114cfyyj1rzz5rxqaf";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pid = buildPythonPackage rec {
|
pid = buildPythonPackage rec {
|
||||||
name = "pid-${version}";
|
name = "pid-${version}";
|
||||||
|
|
Loading…
Reference in New Issue