My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/timeout-decorator/default.nix

16 lines
409 B

{ 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";
};
}