Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "timeout-decorator"; 4 version = "0.5.0"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "6a2f2f58db1c5b24a2cc79de6345760377ad8bdc13813f5265f6c3e63d16b3d7"; 9 }; 10 11 meta = with lib; { 12 description = "Timeout decorator"; 13 license = licenses.mit; 14 homepage = "https://github.com/pnpnpn/timeout-decorator"; 15 }; 16}